[PATCH] D39621: Fix CMake definitions of tsan runtime to make it installed by "install-compiler-rt"
Mehdi AMINI via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Nov 3 17:07:51 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL317391: Fix CMake definitions of tsan runtime to make it installed by "install-compiler… (authored by mehdi_amini).
Changed prior to commit:
https://reviews.llvm.org/D39621?vs=121561&id=121569#toc
Repository:
rL LLVM
https://reviews.llvm.org/D39621
Files:
compiler-rt/trunk/lib/tsan/CMakeLists.txt
Index: compiler-rt/trunk/lib/tsan/CMakeLists.txt
===================================================================
--- compiler-rt/trunk/lib/tsan/CMakeLists.txt
+++ compiler-rt/trunk/lib/tsan/CMakeLists.txt
@@ -184,13 +184,15 @@
$<TARGET_OBJECTS:RTSanitizerCommon.${arch}>
$<TARGET_OBJECTS:RTSanitizerCommonLibc.${arch}>
$<TARGET_OBJECTS:RTUbsan.${arch}>
- CFLAGS ${TSAN_RTL_CFLAGS})
+ CFLAGS ${TSAN_RTL_CFLAGS}
+ PARENT_TARGET tsan)
add_compiler_rt_runtime(clang_rt.tsan_cxx
STATIC
ARCHS ${arch}
SOURCES ${TSAN_CXX_SOURCES}
$<TARGET_OBJECTS:RTUbsan_cxx.${arch}>
- CFLAGS ${TSAN_RTL_CFLAGS})
+ CFLAGS ${TSAN_RTL_CFLAGS}
+ PARENT_TARGET tsan)
list(APPEND TSAN_RUNTIME_LIBRARIES clang_rt.tsan-${arch}
clang_rt.tsan_cxx-${arch})
add_sanitizer_rt_symbols(clang_rt.tsan
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39621.121569.patch
Type: text/x-patch
Size: 933 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171104/7e741f43/attachment.bin>
More information about the llvm-commits
mailing list