Skip to content

Commit 84d853a

Browse files
[libc] fix scudo integration build (#116979)
1 parent 4d6d563 commit 84d853a

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

libc/test/integration/scudo/CMakeLists.txt

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,23 @@ endif()
1313
add_entrypoint_library(
1414
libc_for_scudo_integration_test
1515
DEPENDS
16-
libc.src.stdlib.malloc
17-
libc.src.stdlib.calloc
18-
libc.src.stdlib.realloc
16+
libc.src.errno.errno
17+
libc.src.fcntl.open
18+
libc.src.sched.__sched_getcpucount
1919
libc.src.stdlib.aligned_alloc
20+
libc.src.stdlib.calloc
2021
libc.src.stdlib.free
21-
libc.src.errno.errno
22+
libc.src.stdlib.malloc
23+
libc.src.stdlib.realloc
24+
libc.src.sys.auxv.getauxval
25+
libc.src.sys.mman.mmap
26+
libc.src.sys.mman.munmap
27+
libc.src.sys.prctl.prctl
2228
libc.src.unistd.__llvm_libc_syscall
23-
libc.src.sched.__sched_getcpucount
29+
libc.src.unistd.close
30+
libc.src.unistd.read
31+
libc.src.unistd.sysconf
32+
libc.src.unistd.write
2433
)
2534

2635
add_executable(

0 commit comments

Comments
 (0)