defs.mk: Fix LPPFLAGS for gcc 3.3

This commit is contained in:
Jan Lindemann 2007-12-19 20:21:56 +00:00 committed by Jan Lindemann
commit 83f79c4826

View file

@ -348,8 +348,10 @@ CFLAGS += -I/usr/local/include
CPPFLAGS += -I/usr/local/include
else
ifeq ($(GCC_MAJOR),3)
LPPFLAGS += -lgcc_s
# LPPFLAGS += -L/usr/local/gcc3.3/lib
ifeq ($(GCC_MINOR),3)
LPPFLAGS += -lgcc_s
# LPPFLAGS += -L/usr/local/gcc3.3/lib
endif
else
ifeq ($(GCC_MAJOR),4) # -PIC is more a thing with AMD64, I think
ifeq ($(TARGET),Linux)