pjproject: use g++ as a linker

this seems to fix a strange error where the last stage
cannot find libgcc.a or libgcc.so

only compile tested

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
This commit is contained in:
Dirk Neukirchen 2015-04-10 14:47:19 +02:00 committed by Daniel Golle
parent 409394e6ea
commit b503392f2e

View file

@ -0,0 +1,11 @@
--- a/build/cc-auto.mak.in
+++ b/build/cc-auto.mak.in
@@ -2,7 +2,7 @@ export CC = @CC@ -c
export CXX = @CXX@ -c
export AR = @AR@
export AR_FLAGS = @AR_FLAGS@
-export LD = @LD@
+export LD = @CXX@
export LDOUT = -o
export RANLIB = @RANLIB@