diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-09-13 12:18:41 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-09-13 12:18:41 +0000 |
commit | 255f6a5f1a99afbf6110d67119754febb8016e88 (patch) | |
tree | 8197338e9af1b7f00f24e03d69d0f09830fdad2c /compiler-rt/lib/CMakeLists.txt | |
parent | 046248c50948c7e5c660fef51740f423a6d0d55c (diff) | |
download | bcm5719-llvm-255f6a5f1a99afbf6110d67119754febb8016e88.tar.gz bcm5719-llvm-255f6a5f1a99afbf6110d67119754febb8016e88.zip |
[TSan] Add initial support for buidling ThreadSanitizer runtime library with CMake (currently the only supported platfrom is 64-bit Linux). This patch makes 'clang++ -fthread-sanitizer' work for both clang in the build tree and installed clang
llvm-svn: 163789
Diffstat (limited to 'compiler-rt/lib/CMakeLists.txt')
-rw-r--r-- | compiler-rt/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/CMakeLists.txt b/compiler-rt/lib/CMakeLists.txt index 1249aa00e7e..02d58de0af5 100644 --- a/compiler-rt/lib/CMakeLists.txt +++ b/compiler-rt/lib/CMakeLists.txt @@ -3,8 +3,8 @@ add_subdirectory(asan) add_subdirectory(interception) add_subdirectory(sanitizer_common) +add_subdirectory(tsan) -# FIXME: Add support for tsan library. # FIXME: Add support for the profile library. # The top-level lib directory contains a large amount of C code which provides |