[libc-commits] [PATCH] D106718: [libc] add scudo wrappers to llvm libc
Michael Jones via Phabricator via libc-commits
libc-commits at lists.llvm.org
Mon Jul 26 10:25:04 PDT 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG016ae7df95f2: [libc] add scudo wrappers to llvm libc (authored by michaelrj).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D106718/new/
https://reviews.llvm.org/D106718
Files:
libc/lib/CMakeLists.txt
Index: libc/lib/CMakeLists.txt
===================================================================
--- libc/lib/CMakeLists.txt
+++ libc/lib/CMakeLists.txt
@@ -1,7 +1,7 @@
-set(SCUDO_DEP "")
+set(SCUDO_DEPS "")
if(LLVM_LIBC_INCLUDE_SCUDO)
- list(APPEND SCUDO_DEP RTScudoStandalone.${LIBC_TARGET_ARCHITECTURE})
+ list(APPEND SCUDO_DEPS RTScudoStandalone.${LIBC_TARGET_ARCHITECTURE} RTScudoStandaloneCWrappers.${LIBC_TARGET_ARCHITECTURE})
endif()
add_entrypoint_library(
@@ -9,7 +9,7 @@
DEPENDS
${TARGET_LLVMLIBC_ENTRYPOINTS}
EXT_DEPS
- ${SCUDO_DEP}
+ ${SCUDO_DEPS}
)
if(LLVM_ENABLE_PER_TARGET_RUNTIME_DIR)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D106718.361717.patch
Type: text/x-patch
Size: 628 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210726/11bcd1a5/attachment.bin>
More information about the libc-commits
mailing list