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
This commit is contained in:
parent
e31ccd95c7
commit
1879c5f8e7
2 changed files with 21 additions and 2 deletions
12
scripts/clang-gcc-wrapper
Executable file
12
scripts/clang-gcc-wrapper
Executable file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue