summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2018-06-08 13:11:27 +0200
committerKonstantin Käfer <mail@kkaefer.com>2018-06-11 16:14:46 +0200
commit7a76eb23ea1e47a8fdbd8cdc5220f01e8671c00a (patch)
treea8955d2a429256cf3d9500cdf6cf1181f85f3b23
parent0b883fdbfd671260bd859f1c31ac2dfb535fd28b (diff)
downloadqtlocation-mapboxgl-7a76eb23ea1e47a8fdbd8cdc5220f01e8671c00a.tar.gz
[build] Xcode 10 no longer exposes DEVELOPER_DIR to the compiler launcher
We'll have to extract the location of Xcode's developer dir from $PATH :(
-rw-r--r--scripts/launch-c-xcode.in2
-rw-r--r--scripts/launch-cxx-xcode.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/launch-c-xcode.in b/scripts/launch-c-xcode.in
index 77a0c8aca3..837e1738e8 100644
--- a/scripts/launch-c-xcode.in
+++ b/scripts/launch-c-xcode.in
@@ -1,4 +1,4 @@
#!/bin/sh
export CCACHE_CPP2=true
-exec "@C_LAUNCHER@" "${DEVELOPER_DIR}/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" "$@"
+exec "@C_LAUNCHER@" "${PATH%%/Contents/Developer/*}/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" "$@"
diff --git a/scripts/launch-cxx-xcode.in b/scripts/launch-cxx-xcode.in
index 7d4639ce6d..9532b6f9af 100644
--- a/scripts/launch-cxx-xcode.in
+++ b/scripts/launch-cxx-xcode.in
@@ -1,4 +1,4 @@
#!/bin/sh
export CCACHE_CPP2=true
-exec "@CXX_LAUNCHER@" "${DEVELOPER_DIR}/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" "$@"
+exec "@CXX_LAUNCHER@" "${PATH%%/Contents/Developer/*}/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++" "$@"