summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-10-28 15:15:09 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-10-28 15:15:09 +0000
commit1879c5f8e74d14d23a5b440dd4bf85f6f5b7e908 (patch)
treecc9ac2e4a6da91abc62b8764a871733139051fd5 /scripts
parente31ccd95c79782ed030bee1a458f4682fc6832ac (diff)
downloadmtk-20170518-1879c5f8e74d14d23a5b440dd4bf85f6f5b7e908.zip
mtk-20170518-1879c5f8e74d14d23a5b440dd4bf85f6f5b7e908.tar.gz
mtk-20170518-1879c5f8e74d14d23a5b440dd4bf85f6f5b7e908.tar.bz2
build: fix build on Mac OS X 10.9
Add a wrapper around the clang gcc emulation to fix -print-file-name=<lib> Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 38560
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/clang-gcc-wrapper12
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/clang-gcc-wrapper b/scripts/clang-gcc-wrapper
new file mode 100755
index 0000000..9e66841
--- /dev/null
+++ b/scripts/clang-gcc-wrapper
@@ -0,0 +1,12 @@
+#!/bin/sh
+_cc="${HOSTCC_REAL:-gcc}"
+case "$1" in
+ -print-file-name=*)
+ dirs="$($_cc -print-search-dirs | grep -m1 libraries | sed -e 's,:, ,' -e 's,.* =,,')"
+ dirs="$dirs /usr/lib /usr/local/lib"
+ find $dirs -name "${1#*=}" | head -n1
+ ;;
+ *)
+ exec $_cc "$@"
+ ;;
+esac