Fix CMake errors

This commit is contained in:
William Kent
2024-09-11 11:18:52 -04:00
parent 07d0cc9ce5
commit 71105dfbd4
2 changed files with 15 additions and 17 deletions

View File

@@ -1,13 +1,13 @@
install_manpage(atomic.3 OSAtomicDequeue.3 OSAtomicEnqueue.3)
install_manpage(cache.3 sys_cache_control.3 sys_icache_invalidate.3 sys_dcache_flush.3)
install_manpage(ffs.3 ffsl.3 ffsll.3 fls.3 flsl.3 flsll.3)
install_manpage(getcontext.3 setcontext.3)
install_manpage(makecontext.3 swapcontext.3)
install_manpage(setjmp.3 _longjmp.3 _setjmp.3 longjmp.3 longjmperr.3 longjmperror.3 siglongjmp.3 sigsetjmp.3)
install_manpage(spinlock_deprecated.3 OSSpinLockLock.3 OSSpinLockTry.3 OSSpinLockUnlock.3)
install_manpage(ucontext.3)
install_manpage(atomic.3 COMPONENT DeveloperTools ALIASES OSAtomicDequeue.3 OSAtomicEnqueue.3)
install_manpage(cache.3 COMPONENT DeveloperTools ALIASES sys_cache_control.3 sys_icache_invalidate.3 sys_dcache_flush.3)
install_manpage(ffs.3 COMPONENT DeveloperTools ALIASES ffsl.3 ffsll.3 fls.3 flsl.3 flsll.3)
install_manpage(getcontext.3 COMPONENT DeveloperTools ALIASES setcontext.3)
install_manpage(makecontext.3 COMPONENT DeveloperTools ALIASES swapcontext.3)
install_manpage(setjmp.3 COMPONENT DeveloperTools ALIASES _longjmp.3 _setjmp.3 longjmp.3 longjmperr.3 longjmperror.3 siglongjmp.3 sigsetjmp.3)
install_manpage(spinlock_deprecated.3 COMPONENT DeveloperTools ALIASES OSSpinLockLock.3 OSSpinLockTry.3 OSSpinLockUnlock.3)
install_manpage(ucontext.3 COMPONENT DeveloperTools)
install_manpage(atomic_deprecated.3
install_manpage(atomic_deprecated.3 COMPONENT DeveloperTools ALIASES
OSAtomicAdd32.3 OSAtomicAdd32Barrier.3 OSAtomicAdd64.3 OSAtomicAdd64Barrier.3
OSAtomicAnd32.3 OSAtomicAnd32Barrier.3 OSAtomicAnd32Orig.3 OSAtomicAnd32OrigBarrier.3
OSAtomicCompareAndSwap32.3 OSAtomicCompareAndSwap32Barrier.3 OSAtomicCompareAndSwap64.3
@@ -21,7 +21,8 @@ install_manpage(atomic_deprecated.3
OSMemoryBarrier.3
)
install_manpage(stdatomic.3 ATOMIC_VAR_INIT.3 atomic_compare_exchange_strong.3
install_manpage(stdatomic.3 COMPONENT DeveloperTools ALIASES
ATOMIC_VAR_INIT.3 atomic_compare_exchange_strong.3
atomic_compare_exchange_strong_explicit.3 atomic_compare_exchange_weak.3
atomic_compare_exchange_weak_explicit.3 atomic_exchange.3 atomic_exchange_explicit.3
atomic_fetch_add.3 atomic_fetch_add_explicit.3 atomic_fetch_and.3 atomic_fetch_and_explicit.3

View File

@@ -52,6 +52,10 @@ set_property(TARGET libsyscall_traps PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_
add_library(libsystem_kernel_private_headers INTERFACE)
target_include_directories(libsystem_kernel_private_headers INTERFACE private_include)
target_include_directories(libsystem_kernel_private_headers INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/private_include)
add_library(libsystem_kernel_bootstrap_headers INTERFACE)
target_include_directories(libsystem_kernel_bootstrap_headers INTERFACE bootstrap_include)
# END INTERFACE DEFINITION
@@ -429,13 +433,6 @@ install(TARGETS libsystem_kernel DESTINATION usr/lib/system COMPONENT BaseSystem
# END DYNAMIC LIBRARY
add_library(libsystem_kernel_private_headers INTERFACE)
target_include_directories(libsystem_kernel_private_headers INTERFACE private_include)
target_include_directories(libsystem_kernel_private_headers INTERFACE ${CMAKE_CURRENT_BINARY_DIR}/private_include)
add_library(libsystem_kernel_bootstrap_headers INTERFACE)
target_include_directories(libsystem_kernel_bootstrap_headers INTERFACE bootstrap_include)
# INSTALL
install(FILES wrappers/gethostuuid.h DESTINATION usr/include COMPONENT DeveloperTools)