[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:23:21 PDT 2021


michaelrj updated this revision to Diff 361715.
michaelrj marked an inline comment as done.
michaelrj added a comment.

address comments


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.361715.patch
Type: text/x-patch
Size: 628 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210726/0e3785c0/attachment.bin>


More information about the libc-commits mailing list