2018-03-18 22:01:56 +00:00
|
|
|
OSX_MIN_VERSION=10.8
|
2022-05-03 22:03:28 +00:00
|
|
|
LD64_VERSION=609
|
2022-05-03 14:51:34 +00:00
|
|
|
ifeq (aarch64, $(host_arch))
|
2022-05-09 18:47:33 +00:00
|
|
|
CC_target=arm64-apple-$(host_os)
|
2022-05-03 14:51:34 +00:00
|
|
|
else
|
|
|
|
CC_target=$(host)
|
|
|
|
endif
|
2022-05-05 15:29:11 +00:00
|
|
|
darwin_CC=clang -target $(CC_target) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(host_prefix)/native/SDK/ -mlinker-version=$(LD64_VERSION) -B$(host_prefix)/native/bin/$(host)-
|
|
|
|
darwin_CXX=clang++ -target $(CC_target) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(host_prefix)/native/SDK/ -mlinker-version=$(LD64_VERSION) -stdlib=libc++ -B$(host_prefix)/native/bin/$(host)-
|
2018-03-18 22:01:56 +00:00
|
|
|
|
|
|
|
darwin_CFLAGS=-pipe
|
|
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
2019-11-13 13:50:17 +00:00
|
|
|
darwin_ARFLAGS=cr
|
2018-03-18 22:01:56 +00:00
|
|
|
|
2018-09-22 18:07:33 +00:00
|
|
|
darwin_release_CFLAGS=-O1
|
2018-03-18 22:01:56 +00:00
|
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
|
2022-05-05 15:29:11 +00:00
|
|
|
darwin_native_toolchain=native_cctools darwin_sdk
|