[PATCH] D42314: [scudo] Pass SANITIZER_COMMON_LINK_FLAGS to the shared library LINK_FLAGS
Kostya Kortchinsky via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 19 14:21:10 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rCRT322999: [scudo] Pass SANITIZER_COMMON_LINK_FLAGS to the shared library LINK_FLAGS (authored by cryptoad, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D42314?vs=130680&id=130693#toc
Repository:
rCRT Compiler Runtime
https://reviews.llvm.org/D42314
Files:
lib/scudo/CMakeLists.txt
Index: lib/scudo/CMakeLists.txt
===================================================================
--- lib/scudo/CMakeLists.txt
+++ lib/scudo/CMakeLists.txt
@@ -7,6 +7,8 @@
list(APPEND SCUDO_CFLAGS -fbuiltin)
append_rtti_flag(OFF SCUDO_CFLAGS)
+set(SCUDO_DYNAMIC_LINK_FLAGS ${SANITIZER_COMMON_LINK_FLAGS})
+
set(SCUDO_SOURCES
scudo_allocator.cpp
scudo_flags.cpp
@@ -68,6 +70,7 @@
RTUbsan
RTUbsan_cxx
CFLAGS ${SCUDO_CFLAGS}
+ LINK_FLAGS ${SCUDO_DYNAMIC_LINK_FLAGS}
LINK_LIBS ${SCUDO_DYNAMIC_LIBS}
PARENT_TARGET scudo)
endif()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42314.130693.patch
Type: text/x-patch
Size: 590 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180119/229f456c/attachment.bin>
More information about the llvm-commits
mailing list