]> Git Repo - VerusCoin.git/blob - depends/builders/darwin.mk
macifiy the build so that this compiles on a mac
[VerusCoin.git] / depends / builders / darwin.mk
1 build_darwin_CC = gcc-5
2 build_darwin_CXX = g++-5
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
10 build_darwin_DOWNLOAD = wget --timeout=$(DOWNLOAD_CONNECT_TIMEOUT) --tries=$(DOWNLOAD_RETRIES) -nv -O
11
12 #darwin host on darwin builder. overrides darwin host preferences.
13 darwin_CC= gcc-5
14 darwin_CXX= g++-5
15 darwin_AR:=$(shell xcrun -f ar)
16 darwin_RANLIB:=$(shell xcrun -f ranlib)
17 darwin_STRIP:=$(shell xcrun -f strip)
18 darwin_LIBTOOL:=$(shell xcrun -f libtool)
19 darwin_OTOOL:=$(shell xcrun -f otool)
20 darwin_NM:=$(shell xcrun -f nm)
21 darwin_INSTALL_NAME_TOOL:=$(shell xcrun -f install_name_tool)
22 darwin_native_toolchain=
This page took 0.023917 seconds and 4 git commands to generate.