From e3a909038d9ce69e7d582755732569355f490629 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 28 Oct 2013 15:15:09 +0000 Subject: build: fix build on Mac OS X 10.9 Add a wrapper around the clang gcc emulation to fix -print-file-name= Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38560 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/clang-gcc-wrapper | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 scripts/clang-gcc-wrapper (limited to 'scripts') diff --git a/scripts/clang-gcc-wrapper b/scripts/clang-gcc-wrapper new file mode 100755 index 0000000000..9e668418a9 --- /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 -- cgit v1.2.3