Browse Source

Merge #8002: [depends] Add -stdlib=libc++ to darwin CXX flags

47eda2d [depends] Add -stdlib=libc++ to darwin CXX flags (fanquake)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
f9b4582292
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 2
      depends/builders/darwin.mk

2
depends/builders/darwin.mk

@ -11,7 +11,7 @@ build_darwin_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONN @@ -11,7 +11,7 @@ build_darwin_DOWNLOAD = curl --location --fail --connect-timeout $(DOWNLOAD_CONN
#darwin host on darwin builder. overrides darwin host preferences.
darwin_CC=$(shell xcrun -f clang) -mmacosx-version-min=$(OSX_MIN_VERSION)
darwin_CXX:=$(shell xcrun -f clang++) -mmacosx-version-min=$(OSX_MIN_VERSION)
darwin_CXX:=$(shell xcrun -f clang++) -mmacosx-version-min=$(OSX_MIN_VERSION) -stdlib=libc++
darwin_AR:=$(shell xcrun -f ar)
darwin_RANLIB:=$(shell xcrun -f ranlib)
darwin_STRIP:=$(shell xcrun -f strip)

Loading…
Cancel
Save