14 changes: 7 additions & 7 deletions libc/src/unistd/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -21,7 +21,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -34,7 +34,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -48,7 +48,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -62,7 +62,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -76,7 +76,7 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)

add_entrypoint_object(
Expand All @@ -89,5 +89,5 @@ add_entrypoint_object(
libc.include.unistd
libc.include.sys_syscall
libc.src.__support.OSUtil.osutil
libc.src.errno.__errno_location
libc.src.errno.errno
)
2 changes: 1 addition & 1 deletion libc/test/loader/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ add_loader_test(
# libc.include.sys_mman
# libc.loader.linux.crt1
# libc.src.assert.__assert_fail
# libc.src.errno.__errno_location
# libc.src.errno.errno
# libc.src.sys.mman.mmap
#)
1 change: 1 addition & 0 deletions libc/test/src/__support/File/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ add_libc_unittest(
SRCS
file_test.cpp
DEPENDS
libc.include.errno
libc.include.stdio
libc.include.stdlib
libc.src.__support.File.file
Expand Down
2 changes: 1 addition & 1 deletion libc/test/src/errno/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ add_libc_unittest(
SRCS
errno_test.cpp
DEPENDS
libc.src.errno.__errno_location
libc.src.errno.errno
)
12 changes: 6 additions & 6 deletions libc/test/src/math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand All @@ -329,7 +329,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand All @@ -349,7 +349,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand All @@ -369,7 +369,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand All @@ -389,7 +389,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand All @@ -409,7 +409,7 @@ add_fp_unittest(
DEPENDS
libc.include.errno
libc.include.math
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.fenv.feclearexcept
libc.src.fenv.feraiseexcept
libc.src.fenv.fetestexcept
Expand Down
4 changes: 2 additions & 2 deletions libc/test/src/signal/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ add_libc_unittest(
sigprocmask_test.cpp
DEPENDS
libc.include.errno
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.signal.raise
libc.src.signal.sigaddset
libc.src.signal.sigemptyset
Expand Down Expand Up @@ -63,7 +63,7 @@ add_libc_unittest(
DEPENDS
libc.include.errno
libc.include.signal
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.signal.raise
libc.src.signal.signal
libc.test.errno_setter_matcher
Expand Down
2 changes: 1 addition & 1 deletion libc/test/src/sys/mman/linux/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ add_libc_unittest(
DEPENDS
libc.include.errno
libc.include.sys_mman
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.sys.mman.mmap
libc.src.sys.mman.munmap
libc.test.errno_setter_matcher
Expand Down
4 changes: 2 additions & 2 deletions libc/test/src/threads/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ add_libc_unittest(
thrd_test.cpp
DEPENDS
libc.include.threads
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.threads.thrd_create
libc.src.threads.thrd_join
)
Expand All @@ -39,7 +39,7 @@ add_libc_unittest(
mtx_test.cpp
DEPENDS
libc.include.threads
libc.src.errno.__errno_location
libc.src.errno.errno
libc.src.threads.mtx_destroy
libc.src.threads.mtx_init
libc.src.threads.mtx_lock
Expand Down