[libc-commits] [libc] 84d853a - [libc] fix scudo integration build (#116979)

via libc-commits libc-commits at lists.llvm.org
Wed Nov 20 06:52:59 PST 2024


Author: Schrodinger ZHU Yifan
Date: 2024-11-20T09:52:56-05:00
New Revision: 84d853a708b267ed937e101e72d7cb93dbb7c70a

URL: https://github.com/llvm/llvm-project/commit/84d853a708b267ed937e101e72d7cb93dbb7c70a
DIFF: https://github.com/llvm/llvm-project/commit/84d853a708b267ed937e101e72d7cb93dbb7c70a.diff

LOG: [libc] fix scudo integration build (#116979)

Added: 
    

Modified: 
    libc/test/integration/scudo/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/test/integration/scudo/CMakeLists.txt b/libc/test/integration/scudo/CMakeLists.txt
index a5f7e3b63d24c3..b4011e501b96b3 100644
--- a/libc/test/integration/scudo/CMakeLists.txt
+++ b/libc/test/integration/scudo/CMakeLists.txt
@@ -13,14 +13,23 @@ endif()
 add_entrypoint_library(
   libc_for_scudo_integration_test
   DEPENDS
-    libc.src.stdlib.malloc
-    libc.src.stdlib.calloc
-    libc.src.stdlib.realloc
+    libc.src.errno.errno
+    libc.src.fcntl.open
+    libc.src.sched.__sched_getcpucount
     libc.src.stdlib.aligned_alloc
+    libc.src.stdlib.calloc
     libc.src.stdlib.free
-    libc.src.errno.errno
+    libc.src.stdlib.malloc
+    libc.src.stdlib.realloc
+    libc.src.sys.auxv.getauxval
+    libc.src.sys.mman.mmap
+    libc.src.sys.mman.munmap
+    libc.src.sys.prctl.prctl
     libc.src.unistd.__llvm_libc_syscall
-    libc.src.sched.__sched_getcpucount
+    libc.src.unistd.close
+    libc.src.unistd.read
+    libc.src.unistd.sysconf
+    libc.src.unistd.write
 )
 
 add_executable(


        


More information about the libc-commits mailing list