mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
68757db683
2759597
Only pass -lQt5PlatformSupport if >=Qt5.6 (Jonas Schnelli)59d063d
Use runtime linking of QT libdbus, use custom/temp. SDK URL (Jonas Schnelli)6194d9a
Fix bitcoin_qt.m4 and fix-xcb-include-order.patch (Jonas Schnelli)f6eb4e2
[depends] OpenSSL 1.0.1k - update config_opts (fanquake)f25209a
depends: bump OSX toolchain (Cory Fields)
18 lines
621 B
Makefile
18 lines
621 B
Makefile
OSX_MIN_VERSION=10.7
|
|
OSX_SDK_VERSION=10.11
|
|
OSX_SDK=$(SDK_PATH)/MacOSX$(OSX_SDK_VERSION).sdk
|
|
LD64_VERSION=253.9
|
|
darwin_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION)
|
|
darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) -stdlib=libc++
|
|
|
|
darwin_CFLAGS=-pipe
|
|
darwin_CXXFLAGS=$(darwin_CFLAGS)
|
|
|
|
darwin_release_CFLAGS=-O2
|
|
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
|
|
|
|
darwin_debug_CFLAGS=-O1
|
|
darwin_debug_CXXFLAGS=$(darwin_debug_CFLAGS)
|
|
|
|
darwin_native_toolchain=native_cctools
|