]>
Commit | Line | Data |
---|---|---|
e891d64b JB |
1 | build_darwin_CC = gcc-5 |
2 | build_darwin_CXX = g++-5 | |
1dec09b3 CF |
3 | build_darwin_AR: = $(shell xcrun -f ar) |
4 | build_darwin_RANLIB: = $(shell xcrun -f ranlib) | |
5 | build_darwin_STRIP: = $(shell xcrun -f strip) | |
6 | build_darwin_OTOOL: = $(shell xcrun -f otool) | |
7 | build_darwin_NM: = $(shell xcrun -f nm) | |
8 | build_darwin_INSTALL_NAME_TOOL:=$(shell xcrun -f install_name_tool) | |
9 | build_darwin_SHA256SUM = shasum -a 256 | |
e9fac086 | 10 | #<<<<<<< HEAD |
11 | ##build_darwin_DOWNLOAD = curl --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -L -f -o | |
1dec09b3 CF |
12 | |
13 | #darwin host on darwin builder. overrides darwin host preferences. | |
e9fac086 | 14 | #darwin_CC= gcc-5 |
15 | #darwin_CXX= g++-5 | |
16 | #======= | |
b0a7ddb0 | 17 | build_darwin_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONNECT_TIMEOUT) --retry $(DOWNLOAD_RETRIES) -o |
1dec09b3 CF |
18 | |
19 | #darwin host on darwin builder. overrides darwin host preferences. | |
20 | darwin_CC=$(shell xcrun -f clang) -mmacosx-version-min=$(OSX_MIN_VERSION) | |
377092a1 | 21 | darwin_CXX:=$(shell xcrun -f clang++) -mmacosx-version-min=$(OSX_MIN_VERSION) -stdlib=libc++ |
e9fac086 | 22 | #>>>>>>> zcash/master |
1dec09b3 CF |
23 | darwin_AR:=$(shell xcrun -f ar) |
24 | darwin_RANLIB:=$(shell xcrun -f ranlib) | |
25 | darwin_STRIP:=$(shell xcrun -f strip) | |
26 | darwin_LIBTOOL:=$(shell xcrun -f libtool) | |
27 | darwin_OTOOL:=$(shell xcrun -f otool) | |
28 | darwin_NM:=$(shell xcrun -f nm) | |
29 | darwin_INSTALL_NAME_TOOL:=$(shell xcrun -f install_name_tool) | |
30 | darwin_native_toolchain= |