(svn r8678) [PSP] -Add: added LIBS and CFLAGS needed to compile PSP

-Fix: PSP needs to link with gcc, not with g++ (don't ask)
-Fix: PSP doens't support threads
This commit is contained in:
truelight
2007-02-11 16:28:00 +00:00
parent c18454bf1c
commit 4b88663f31
3 changed files with 11 additions and 1 deletions

View File

@@ -224,7 +224,11 @@ $(BIN_DIR)/$(TTD): $(TTD)
$(TTD): rev.o $(OBJS) $(CONFIG_CACHE_LINKER)
$(E) '$(STAGE) Linking $@'
ifeq ($(OS), PSP)
$(Q)$(CC_HOST) $(LDFLAGS) rev.o $(OBJS) $(LIBS) -o $@
else
$(Q)$(CXX_HOST) $(LDFLAGS) rev.o $(OBJS) $(LIBS) -o $@
endif
ifdef STRIP
$(Q)$(STRIP) $@
endif