2019-11-21 11:08:47 -05: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 14:41:08 +08:00
|
|
|
|
|
|
|
# When cross-compiling for Darwin using Clang, -mlinker-version must be passed to
|
|
|
|
# ensure that modern linker features are enabled.
|
2020-01-10 12:16:25 -05:00
|
|
|
darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) -B$(build_prefix)/bin
|
2020-07-10 12:55:45 -04:00
|
|
|
darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -stdlib=libc++ -mlinker-version=$(LD64_VERSION) -B$(build_prefix)/bin -nostdinc++ -isystem $(OSX_SDK)/usr/include/c++/v1
|
2014-09-23 17:00:31 -04:00
|
|
|
|
|
|
|
darwin_CFLAGS=-pipe
|
2014-07-23 01:31:30 -04:00
|
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
2014-09-23 17:00:31 -04:00
|
|
|
|
|
|
|
darwin_release_CFLAGS=-O2
|
|
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
|
2019-10-09 20:10:00 -04:00
|
|
|
darwin_native_binutils=native_cctools
|
2020-01-10 12:16:25 -05:00
|
|
|
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
|
2014-07-23 01:31:30 -04:00
|
|
|
darwin_native_toolchain=native_cctools
|
2020-01-10 12:16:25 -05:00
|
|
|
else
|
|
|
|
darwin_native_toolchain=
|
|
|
|
endif
|
|
|
|
|
2019-07-09 14:40:45 -04:00
|
|
|
darwin_cmake_system=Darwin
|