From: John Hodge Date: Tue, 14 May 2013 07:25:29 +0000 (+0800) Subject: Tools/GCCProxy - Moved libgcc to last item in link list (fixes undefined references) X-Git-Tag: rel0.15~485 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=13a05e65cf34886163b596193d129fbfcac3c55f;p=tpg%2Facess2.git Tools/GCCProxy - Moved libgcc to last item in link list (fixes undefined references) --- diff --git a/Tools/GCCProxy/gccproxy.sh b/Tools/GCCProxy/gccproxy.sh index 801a1f1b..1624fe0e 100755 --- a/Tools/GCCProxy/gccproxy.sh +++ b/Tools/GCCProxy/gccproxy.sh @@ -108,6 +108,6 @@ elif echo " $_miscargs" | grep '\.c' >/dev/null; then rm $tmpout exit $_rv else - run $_LD $_ldflags $_miscargs $_outfile $LDFLAGS $LIBGCC_PATH $_libs + run $_LD $_ldflags $_miscargs $_outfile $LDFLAGS $_libs $LIBGCC_PATH fi