You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
272 B
13 lines
272 B
11 years ago
|
#!/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
|