android: modify makefile to get around build errors when building for android

This commit is contained in:
Rom Walton 2013-01-18 12:45:17 -05:00 committed by Oliver Bock
parent 4b3cd5e293
commit 6d2ef43306
1 changed files with 4 additions and 0 deletions

View File

@ -22,7 +22,11 @@ PROGS = wrapper
all: $(PROGS)
libstdc++.a:
ifdef ANDROIDTC
cp $(STDCPPTC) libstdc++.a
else
ln -s `g++ -print-file-name=libstdc++.a`
endif
clean:
rm $(PROGS) *.o