aboutsummaryrefslogtreecommitdiff
path: root/contrib/depends/hosts/darwin.mk
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2018-09-22 20:07:33 +0200
committerTheCharlatan <seb.kung@gmail.com>2018-09-22 21:50:08 +0200
commit0f4f873bf33404dbfc016a90cd6930fb43b1165e (patch)
tree3dd6d9ce33c3852334f5750796f31c838fc1368a /contrib/depends/hosts/darwin.mk
parentA Travis to monero (diff)
downloadmonero-0f4f873bf33404dbfc016a90cd6930fb43b1165e.tar.xz
Fix Darwin Sodium build
Clang needs to get its cctools path passed.
Diffstat (limited to '')
-rw-r--r--contrib/depends/hosts/darwin.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/depends/hosts/darwin.mk b/contrib/depends/hosts/darwin.mk
index 4e58bec74..6f8f2ffe2 100644
--- a/contrib/depends/hosts/darwin.mk
+++ b/contrib/depends/hosts/darwin.mk
@@ -2,13 +2,13 @@ OSX_MIN_VERSION=10.8
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_CC=clang -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) -B $(host_prefix)/native/bin
+darwin_CXX=clang++ -target $(host) -mmacosx-version-min=$(OSX_MIN_VERSION) --sysroot $(OSX_SDK) -mlinker-version=$(LD64_VERSION) -stdlib=libc++ -B $(host_prefix)/native/bin
darwin_CFLAGS=-pipe
darwin_CXXFLAGS=$(darwin_CFLAGS)
-darwin_release_CFLAGS=-O2
+darwin_release_CFLAGS=-O1
darwin_release_CXXFLAGS=$(darwin_release_CFLAGS)
darwin_debug_CFLAGS=-O1