mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
5c27fd853f
All patching should be in _preprocess_cmd. config_cmd should just run configure and nothing else before it, otherwise $PATH is broken when it runs. Also remove redundant settings to configure, _autoconf already sets them. We leave explicit AR_FLAGS settings because the builtin rule uses ARFLAGS, and so would leave AR_FLAGS unset otherwise.
21 lines
784 B
Makefile
21 lines
784 B
Makefile
OSX_MIN_VERSION=10.8
|
|
LD64_VERSION=609
|
|
ifeq (aarch64, $(host_arch))
|
|
CC_target=arm64-apple-$(host_os)
|
|
else
|
|
CC_target=$(host)
|
|
endif
|
|
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)-
|
|
|
|
darwin_CFLAGS=-pipe
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
|
darwin_ARFLAGS=cr
|
|
|
|
darwin_release_CFLAGS=-O1
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
darwin_native_toolchain=native_cctools darwin_sdk
|