init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
43
Telegram/ThirdParty/dispatch/cmake/modules/DispatchAppleOptions.cmake
vendored
Normal file
43
Telegram/ThirdParty/dispatch/cmake/modules/DispatchAppleOptions.cmake
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
set(WITH_APPLE_PTHREAD_SOURCE "" CACHE PATH "Path to Apple's libpthread")
|
||||
set(WITH_APPLE_LIBPLATFORM_SOURCE "" CACHE PATH "Path to Apple's libplatform")
|
||||
set(WITH_APPLE_LIBCLOSURE_SOURCE "" CACHE PATH "Path to Apple's libclosure")
|
||||
set(WITH_APPLE_XNU_SOURCE "" CACHE PATH "Path to Apple's XNU")
|
||||
set(WITH_APPLE_OBJC4_SOURCE "" CACHE PATH "Path to Apple's ObjC4")
|
||||
|
||||
if(WITH_APPLE_PTHREAD_SOURCE)
|
||||
include_directories(SYSTEM "${WITH_APPLE_PTHREAD_SOURCE}")
|
||||
endif()
|
||||
if(WITH_APPLE_LIBPLATFORM_SOURCE)
|
||||
include_directories(SYSTEM "${WITH_APPLE_LIBPLATFORM_SOURCE}/include")
|
||||
endif()
|
||||
if(WITH_APPLE_LIBCLOSURE_SOURCE)
|
||||
include_directories(SYSTEM "${WITH_APPLE_LIBCLOSURE_SOURCE}")
|
||||
endif()
|
||||
if(WITH_APPLE_XNU_SOURCE)
|
||||
# FIXME(compnerd) this should use -idirafter
|
||||
include_directories("${WITH_APPLE_XNU_SOURCE}/libkern")
|
||||
include_directories(SYSTEM
|
||||
"${WITH_APPLE_XNU_SOURCE}/bsd"
|
||||
"${WITH_APPLE_XNU_SOURCE}/libsyscall"
|
||||
"${WITH_APPLE_XNU_SOURCE}/libsyscall/wrappers/libproc")
|
||||
|
||||
# hack for xnu/bsd/sys/event.h EVFILT_SOCK declaration
|
||||
add_definitions(-DPRIVATE=1)
|
||||
endif()
|
||||
|
||||
if(IS_DIRECTORY "/System/Library/Frameworks/System.framework/PrivateHeaders")
|
||||
include_directories(SYSTEM
|
||||
"/System/Library/Frameworks/System.framework/PrivateHeaders")
|
||||
endif()
|
||||
|
||||
option(ENABLE_APPLE_TSD_OPTIMIZATIONS "use non-portable pthread TSD optimizations" OFF)
|
||||
if(ENABLE_APPLE_TSD_OPTIMIZATIONS)
|
||||
set(USE_APPLE_TSD_OPTIMIZATIONS 1)
|
||||
else()
|
||||
set(USE_APPLE_TSD_OPTIMIZATIONS 0)
|
||||
endif()
|
||||
|
||||
# TODO(compnerd) link in libpthread headers
|
||||
|
||||
|
||||
Reference in New Issue
Block a user