[sanitizer] Add -lrt to dyndd link line.

llvm-svn: 238626
This commit is contained in:
Evgeniy Stepanov 2015-05-29 22:57:15 +00:00
parent 5b63908f9f
commit 42fb96652b
1 changed files with 1 additions and 0 deletions

View File

@ -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)