mirror of
https://github.com/monero-project/monero.git
synced 2025-12-08 16:11:28 +09:00
68 lines
2.1 KiB
Makefile
68 lines
2.1 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++
|
|
|
|
darwin_AR=llvm-ar
|
|
darwin_DSYMUTIL=dsymutil
|
|
darwin_NM=llvm-nm
|
|
darwin_OBJDUMP=llvm-objdump
|
|
darwin_RANLIB=llvm-ranlib
|
|
darwin_STRIP=llvm-strip
|
|
|
|
# Flag explanations:
|
|
#
|
|
# -mlinker-version
|
|
#
|
|
# Ensures that modern linker features are enabled. See here for more
|
|
# details: https://github.com/bitcoin/bitcoin/pull/19407.
|
|
#
|
|
# -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=env -u C_INCLUDE_PATH -u CPLUS_INCLUDE_PATH \
|
|
-u OBJC_INCLUDE_PATH -u OBJCPLUS_INCLUDE_PATH -u CPATH \
|
|
-u LIBRARY_PATH \
|
|
$(clang_prog) --target=$(host) -mmacosx-version-min=$(OSX_MIN_VERSION) \
|
|
-mlinker-version=$(LD64_VERSION) \
|
|
-isysroot$(OSX_SDK) -nostdlibinc \
|
|
-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) --target=$(host) -mmacosx-version-min=$(OSX_MIN_VERSION) \
|
|
-mlinker-version=$(LD64_VERSION) \
|
|
-isysroot$(OSX_SDK) -nostdlibinc \
|
|
-iwithsysroot/usr/include/c++/v1 \
|
|
-iwithsysroot/usr/include -iframeworkwithsysroot/System/Library/Frameworks
|
|
|
|
darwin_CFLAGS=-pipe
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
|
darwin_LDFLAGS=-Wl,-platform_version,macos,$(OSX_MIN_VERSION),$(OSX_SDK_VERSION) -Wl,-no_adhoc_codesign -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
|