]> granicus.if.org Git - clang/commitdiff
[tsan] add ThreadSanitizer linker flags on Linux and also copy the tsan-rt into...
authorKostya Serebryany <kcc@google.com>
Wed, 16 May 2012 06:36:00 +0000 (06:36 +0000)
committerKostya Serebryany <kcc@google.com>
Wed, 16 May 2012 06:36:00 +0000 (06:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156906 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Driver/Tools.cpp
runtime/compiler-rt/Makefile

index 887c64cff037659702c6e0f53ca8dc5a0dd792ba..fcfee50859ef38ce9b6185cabec134a7b662617e 100644 (file)
@@ -1304,6 +1304,27 @@ static void addAsanRTLinux(const ToolChain &TC, const ArgList &Args,
   }
 }
 
+/// If ThreadSanitizer is enabled, add appropriate linker flags (Linux).
+/// This needs to be called before we add the C run-time (malloc, etc).
+static void addTsanRTLinux(const ToolChain &TC, const ArgList &Args,
+                           ArgStringList &CmdArgs) {
+  if (!Args.hasFlag(options::OPT_fthread_sanitizer,
+                    options::OPT_fno_thread_sanitizer, false))
+    return;
+  if (!Args.hasArg(options::OPT_shared)) {
+    // LibTsan is "libclang_rt.tsan-<ArchName>.a" in the Linux library
+    // resource directory.
+    SmallString<128> LibTsan(TC.getDriver().ResourceDir);
+    llvm::sys::path::append(LibTsan, "lib", "linux",
+                            (Twine("libclang_rt.tsan-") +
+                             TC.getArchName() + ".a"));
+    CmdArgs.push_back(Args.MakeArgString(LibTsan));
+    CmdArgs.push_back("-lpthread");
+    CmdArgs.push_back("-ldl");
+    CmdArgs.push_back("-export-dynamic");
+  }
+}
+
 static bool shouldUseFramePointer(const ArgList &Args,
                                   const llvm::Triple &Triple) {
   if (Arg *A = Args.getLastArg(options::OPT_fno_omit_frame_pointer,
@@ -5330,6 +5351,7 @@ void linuxtools::Link::ConstructJob(Compilation &C, const JobAction &JA,
 
   // Call this before we add the C run-time.
   addAsanRTLinux(getToolChain(), Args, CmdArgs);
+  addTsanRTLinux(getToolChain(), Args, CmdArgs);
 
   if (!Args.hasArg(options::OPT_nostdlib)) {
     if (!Args.hasArg(options::OPT_nodefaultlibs)) {
index 534168b484e226f4cae2745a1c8eca47500fb1b5..6b23346ce5695e7714982a0c8ed194756c1370b4 100644 (file)
@@ -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