From 13a05e65cf34886163b596193d129fbfcac3c55f Mon Sep 17 00:00:00 2001 From: John Hodge Date: Tue, 14 May 2013 15:25:29 +0800 Subject: [PATCH] Tools/GCCProxy - Moved libgcc to last item in link list (fixes undefined references) --- Tools/GCCProxy/gccproxy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1