3 # Get invocation path (which could be a symlink in $PATH)
10 fullpath=`readlink -f "$fullpath"`
13 BASEDIR=`dirname "$fullpath"`
17 _linktype=Applications
19 while [[ $# -gt 0 ]]; do
35 _ldflags=$_ldflags" -shared -lc -lgcc"
39 _cflags=$_cflags" $1 $2"
49 _ldflags=$_ldflags" ${arg}"
69 _miscargs=$_miscargs" $1"
76 if [[ "x$GCCPROXY_DEBUG" != "x" ]]; then
83 _ldflags="-lposix -lpsocket "$_ldflags
86 make --no-print-directory -f $BASEDIR/getconfig.mk ARCH=x86 TYPE=$_linktype > $cfgfile
90 #echo "_compile = $_compile, _preproc = $_preproc"
92 if [[ "x$_actas" == "xld" ]]; then
93 run $_LD $LDFLAGS $_ldflags $_outfile $_miscargs $LIBGCC_PATH $_libs
97 if [[ $_preproc -eq 1 ]]; then
98 run $_CC -E $CFLAGS $_cflags $_miscargs $_outfile
99 elif [[ $_makedep -eq 1 ]]; then
100 run $_CC -M $CFLAGS $_cflags $_miscargs $_outfile
101 elif [[ $_compile -eq 1 ]]; then
102 run $_CC $CFLAGS $_cflags $_miscargs -c $_outfile
103 elif echo " $_miscargs" | grep '\.c' >/dev/null; then
104 tmpout=`mktemp acess_gccproxy.XXXXXXXXXX.o --tmpdir`
105 run $_CC $CFLAGS $_cflags $_miscargs -c -o $tmpout
106 run $_LD $LDFLAGS $_ldflags $_libs $tmpout $_outfile $_libs $LIBGCC_PATH
111 run $_LD $_ldflags $_miscargs $_outfile $LDFLAGS $_libs $LIBGCC_PATH