aboutsummaryrefslogtreecommitdiff
path: root/depends/hosts
diff options
context:
space:
mode:
authorCory Fields <cory-nospam-@coryfields.com>2016-04-21 16:23:40 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2016-04-27 12:47:41 +0200
commita398549b3bfc976f1b6408f41af7dac3514e2553 (patch)
tree8b3a18794523f32cec3feab90d3adf65e04227ba /depends/hosts
parent67969af09f4729d041589da5f31ac40c07d2f4be (diff)
downloadbitcoin-a398549b3bfc976f1b6408f41af7dac3514e2553.tar.xz
depends: use c++11
Diffstat (limited to 'depends/hosts')
-rw-r--r--depends/hosts/darwin.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/depends/hosts/darwin.mk b/depends/hosts/darwin.mk
index 2958dc50cc..dbe6d00795 100644
--- a/depends/hosts/darwin.mk
+++ b/depends/hosts/darwin.mk
@@ -3,7 +3,7 @@ OSX_SDK_VERSION=10.9
OSX_SDK=$(SDK_PATH)/MacOSX$(OSX_SDK_VERSION).sdk
LD64_VERSION=241.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)
+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)