For Irix CC builds, change the default optimization flags to -O -g.

Lame workaround for bug 92099. r=bbaetz
This commit is contained in:
seawood%netscape.com 2001-11-20 04:22:05 +00:00
parent 3ede41a072
commit b957280c40

View File

@ -46,6 +46,13 @@ CPPSRCS = \
nsFtpControlConnection.cpp \
$(NULL)
# Use -g for Irix mipspro builds as workaround for bug 92099
ifneq (,$(filter IRIX IRIX64,$(OS_ARCH)))
ifndef GNU_CC
MODULE_OPTIMIZE_FLAGS=-O -g
endif
endif
# we don't want the shared lib, but we want to force the creation of a
# static lib.
FORCE_STATIC_LIB = 1