diff options
author | Kostya Serebryany <kcc@google.com> | 2012-05-16 06:36:00 +0000 |
---|---|---|
committer | Kostya Serebryany <kcc@google.com> | 2012-05-16 06:36:00 +0000 |
commit | 66e8fab1c88cea2f6e4011b60db7b630575a032b (patch) | |
tree | c2720d69c8a5ddc063875a89fb9f7a36b90f09d7 /clang/runtime | |
parent | 7f0e7bae257edc0ec5811143b3f5a97d17c2f330 (diff) | |
download | bcm5719-llvm-66e8fab1c88cea2f6e4011b60db7b630575a032b.tar.gz bcm5719-llvm-66e8fab1c88cea2f6e4011b60db7b630575a032b.zip |
[tsan] add ThreadSanitizer linker flags on Linux and also copy the tsan-rt into the appropriate place at build time
llvm-svn: 156906
Diffstat (limited to 'clang/runtime')
-rw-r--r-- | clang/runtime/compiler-rt/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/runtime/compiler-rt/Makefile b/clang/runtime/compiler-rt/Makefile index 534168b484e..6b23346ce56 100644 --- a/clang/runtime/compiler-rt/Makefile +++ b/clang/runtime/compiler-rt/Makefile @@ -90,7 +90,7 @@ RuntimeLibrary.linux.Configs += \ endif ifeq ($(ARCH),x86_64) RuntimeLibrary.linux.Configs += \ - full-x86_64 profile-x86_64 asan-x86_64 + full-x86_64 profile-x86_64 asan-x86_64 tsan-x86_64 endif endif |