mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
3b9412fece
Some checks are pending
ci/gh-actions/build / build-ubuntu-without-scanner (push) Waiting to run
ci/gh-actions/guix / cache-sources (push) Waiting to run
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Blocked by required conditions
ci/gh-actions/guix / bundle-logs (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Blocked by required conditions
ci/gh-actions/guix / aarch64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / arm-linux-gnueabihf (push) Blocked by required conditions
ci/gh-actions/guix / arm64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / i686-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / riscv64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-apple-darwin (push) Blocked by required conditions
77 lines
2.4 KiB
Makefile
77 lines
2.4 KiB
Makefile
OSX_MIN_VERSION=11.0
|
|
OSX_SDK_VERSION=11.0
|
|
XCODE_VERSION=12.2
|
|
XCODE_BUILD_ID=12B45b
|
|
LD64_VERSION=711
|
|
|
|
OSX_SDK=$(host_prefix)/native/SDK
|
|
|
|
darwin_native_toolchain=darwin_sdk
|
|
|
|
|
|
clang_prog=clang
|
|
clangxx_prog=clang++
|
|
llvm_config_prog=llvm-config
|
|
|
|
llvm_lib_dir=$(shell $(llvm_config_prog) --libdir)
|
|
|
|
darwin_AR=llvm-ar
|
|
darwin_DSYMUTIL=dsymutil
|
|
darwin_NM=llvm-nm
|
|
darwin_OBJDUMP=llvm-objdump
|
|
darwin_RANLIB=llvm-ranlib
|
|
darwin_STRIP=llvm-strip
|
|
darwin_LIBTOOL=llvm-libtool-darwin
|
|
|
|
# Flag explanations:
|
|
#
|
|
# -mlinker-version
|
|
#
|
|
# Ensures that modern linker features are enabled. See here for more
|
|
# details: https://github.com/bitcoin/bitcoin/pull/19407.
|
|
#
|
|
# -B$(build_prefix)/bin
|
|
#
|
|
# Explicitly point to our binaries (e.g. cctools) so that they are
|
|
# ensured to be found and preferred over other possibilities.
|
|
#
|
|
# -isysroot$(OSX_SDK) -nostdlibinc
|
|
#
|
|
# Disable default include paths built into the compiler as well as
|
|
# those normally included for libc and libc++. The only path that
|
|
# remains implicitly is the clang resource dir.
|
|
#
|
|
# -iwithsysroot / -iframeworkwithsysroot
|
|
#
|
|
# Adds the desired paths from the SDK
|
|
#
|
|
|
|
darwin_CC_=--target=$(host) \
|
|
-isysroot$(OSX_SDK) -nostdlibinc \
|
|
-iwithsysroot/usr/include -iframeworkwithsysroot/System/Library/Frameworks
|
|
darwin_CC=env -u C_INCLUDE_PATH -u CPLUS_INCLUDE_PATH \
|
|
-u OBJC_INCLUDE_PATH -u OBJCPLUS_INCLUDE_PATH -u CPATH \
|
|
-u LIBRARY_PATH \
|
|
$(clang_prog) $(darwin_CC_)
|
|
|
|
darwin_CXX_=--target=$(host) \
|
|
-isysroot$(OSX_SDK) -nostdlibinc \
|
|
-iwithsysroot/usr/include/c++/v1 \
|
|
-iwithsysroot/usr/include -iframeworkwithsysroot/System/Library/Frameworks
|
|
darwin_CXX=env -u C_INCLUDE_PATH -u CPLUS_INCLUDE_PATH \
|
|
-u OBJC_INCLUDE_PATH -u OBJCPLUS_INCLUDE_PATH -u CPATH \
|
|
-u LIBRARY_PATH \
|
|
$(clangxx_prog) $(darwin_CXX_)
|
|
|
|
darwin_CFLAGS=-pipe -mmacosx-version-min=$(OSX_MIN_VERSION) -mlinker-version=$(LD64_VERSION)
|
|
darwin_CXXFLAGS=-pipe -mmacosx-version-min=$(OSX_MIN_VERSION) -mlinker-version=$(LD64_VERSION)
|
|
darwin_LDFLAGS=-Wl,-platform_version,macos,$(OSX_MIN_VERSION),$(OSX_SDK_VERSION) -fuse-ld=lld
|
|
darwin_ARFLAGS=cr
|
|
|
|
darwin_release_CFLAGS=-O2
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
darwin_cmake_system=Darwin
|