diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-04-12 07:11:00 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-04-12 07:11:00 +0000 |
commit | 0d725b14086cb3662ebd5a16c0733d6128737e05 (patch) | |
tree | 0c47cb538cc19d12aeccbcb83ff8cbddd7fd4925 /compiler-rt/lib/tsan | |
parent | bdfd4eb223657075e4bdb1755e94c66d8e20f06c (diff) | |
download | bcm5719-llvm-0d725b14086cb3662ebd5a16c0733d6128737e05.tar.gz bcm5719-llvm-0d725b14086cb3662ebd5a16c0733d6128737e05.zip |
[TSan] remove -fPIE -pie from TSan lit tests to check that -fsanitize=thread implies them now
llvm-svn: 179365
Diffstat (limited to 'compiler-rt/lib/tsan')
-rw-r--r-- | compiler-rt/lib/tsan/lit_tests/lit.cfg | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler-rt/lib/tsan/lit_tests/lit.cfg b/compiler-rt/lib/tsan/lit_tests/lit.cfg index e2d2bae45ca..a2206cc7036 100644 --- a/compiler-rt/lib/tsan/lit_tests/lit.cfg +++ b/compiler-rt/lib/tsan/lit_tests/lit.cfg @@ -69,10 +69,8 @@ config.environment['TSAN_OPTIONS'] = tsan_options # Setup default compiler flags used with -fsanitize=thread option. # FIXME: Review the set of required flags and check if it can be reduced. clang_tsan_cflags = ("-fsanitize=thread " - + "-fPIE " + "-g " + "-Wall " - + "-pie " + "-lpthread " + "-ldl ") clang_tsan_cxxflags = "-ccc-cxx " + clang_tsan_cflags |