[llvm-commits] [compiler-rt] r167010 - in /compiler-rt/trunk/lib: asan/lit_tests/lit.cfg lit.common.cfg tsan/lit_tests/lit.cfg
Rafael EspĂndola
rafael.espindola at gmail.com
Tue Oct 30 16:13:39 PDT 2012
Thanks!
On 30 October 2012 06:06, Alexey Samsonov <samsonov at google.com> wrote:
> Author: samsonov
> Date: Tue Oct 30 05:06:42 2012
> New Revision: 167010
>
> URL: http://llvm.org/viewvc/llvm-project?rev=167010&view=rev
> Log:
> Flag -ccc-clang-cxx was removed in r166986, remove it from compiler-rt lit configs
>
> Modified:
> compiler-rt/trunk/lib/asan/lit_tests/lit.cfg
> compiler-rt/trunk/lib/lit.common.cfg
> compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg
>
> Modified: compiler-rt/trunk/lib/asan/lit_tests/lit.cfg
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/asan/lit_tests/lit.cfg?rev=167010&r1=167009&r2=167010&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/asan/lit_tests/lit.cfg (original)
> +++ compiler-rt/trunk/lib/asan/lit_tests/lit.cfg Tue Oct 30 05:06:42 2012
> @@ -58,8 +58,7 @@
>
> # Setup default compiler flags used with -faddress-sanitizer option.
> # FIXME: Review the set of required flags and check if it can be reduced.
> -clang_asan_cxxflags = ("-ccc-clang-cxx "
> - + "-ccc-cxx "
> +clang_asan_cxxflags = ("-ccc-cxx "
> + "-faddress-sanitizer "
> + "-mno-omit-leaf-frame-pointer "
> + "-fno-omit-frame-pointer "
>
> Modified: compiler-rt/trunk/lib/lit.common.cfg
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/lit.common.cfg?rev=167010&r1=167009&r2=167010&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/lit.common.cfg (original)
> +++ compiler-rt/trunk/lib/lit.common.cfg Tue Oct 30 05:06:42 2012
> @@ -45,7 +45,7 @@
> # Define %clang and %clangxx substitutions to use in test RUN lines.
> config.substitutions.append( ("%clang ", (" " + config.clang + " ")) )
> config.substitutions.append( ("%clangxx ", (" " + config.clang +
> - " -ccc-clang-cxx -ccc-cxx ")) )
> + " -ccc-cxx ")) )
>
> # Use ugly construction to explicitly prohibit "clang", "clang++" etc.
> # in RUN lines.
>
> Modified: compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg
> URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg?rev=167010&r1=167009&r2=167010&view=diff
> ==============================================================================
> --- compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg (original)
> +++ compiler-rt/trunk/lib/tsan/lit_tests/lit.cfg Tue Oct 30 05:06:42 2012
> @@ -69,7 +69,7 @@
> + "-pie "
> + "-lpthread "
> + "-ldl ")
> -clang_tsan_cxxflags = "-ccc-clang-cxx -ccc-cxx " + clang_tsan_cflags
> +clang_tsan_cxxflags = "-ccc-cxx " + clang_tsan_cflags
> config.substitutions.append( ("%clangxx_tsan ", (" " + config.clang + " " +
> clang_tsan_cxxflags + " ")) )
> config.substitutions.append( ("%clang_tsan ", (" " + config.clang + " " +
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
More information about the llvm-commits
mailing list