[compiler-rt] r238626 - [sanitizer] Add -lrt to dyndd link line.

Evgeniy Stepanov eugeni.stepanov at gmail.com
Fri May 29 15:57:16 PDT 2015


Author: eugenis
Date: Fri May 29 17:57:15 2015
New Revision: 238626

URL: http://llvm.org/viewvc/llvm-project?rev=238626&view=rev
Log:
[sanitizer] Add -lrt to dyndd link line.

Modified:
    compiler-rt/trunk/lib/tsan/dd/CMakeLists.txt

Modified: compiler-rt/trunk/lib/tsan/dd/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/tsan/dd/CMakeLists.txt?rev=238626&r1=238625&r2=238626&view=diff
==============================================================================
--- compiler-rt/trunk/lib/tsan/dd/CMakeLists.txt (original)
+++ compiler-rt/trunk/lib/tsan/dd/CMakeLists.txt Fri May 29 17:57:15 2015
@@ -12,6 +12,7 @@ set(DD_SOURCES
 
 set(DD_LINKLIBS)
 append_list_if(COMPILER_RT_HAS_LIBDL dl DD_LINKLIBS)
+append_list_if(COMPILER_RT_HAS_LIBRT rt DD_LINKLIBS)
 append_list_if(COMPILER_RT_HAS_LIBPTHREAD pthread DD_LINKLIBS)
 
 add_custom_target(dd)





More information about the llvm-commits mailing list