Skip to content

[libc] fix scudo integration build #116979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions libc/test/integration/scudo/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading