2019-11-21 13:08:47 -03:00
|
|
|
OSX_MIN_VERSION=10.12
|
2020-06-16 14:20:19 -04:00
|
|
|
OSX_SDK_VERSION=10.15.1
|
|
|
|
XCODE_VERSION=11.3.1
|
|
|
|
XCODE_BUILD_ID=11C505
|
2020-06-22 16:46:16 -04:00
|
|
|
LD64_VERSION=530
|
|
|
|
|
2020-06-18 18:05:22 -04:00
|
|
|
OSX_SDK=$(SDK_PATH)/Xcode-$(XCODE_VERSION)-$(XCODE_BUILD_ID)-extracted-SDK-with-libcxx-headers
|
2020-06-26 02:41:08 -04:00
|
|
|
|
|
|
|
# When cross-compiling for Darwin using Clang, -mlinker-version must be passed to
|
|
|
|
# ensure that modern linker features are enabled.
|
2020-06-22 16:46:16 -04:00
|
|
|
darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION)
|
|
|
|
darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -stdlib=libc++ -mlinker-version=$(LD64_VERSION)
|
2014-09-23 18:00:31 -03:00
|
|
|
|
|
|
|
darwin_CFLAGS=-pipe
|
2014-07-23 01:31:30 -04:00
|
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
2014-09-23 18:00:31 -03:00
|
|
|
|
|
|
|
darwin_release_CFLAGS=-O2
|
|
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
|
2014-07-23 01:31:30 -04:00
|
|
|
darwin_native_toolchain=native_cctools
|
2019-07-09 14:40:45 -04:00
|
|
|
darwin_cmake_system=Darwin
|