Bug 417045, work around for bustage with make -jN and -save-temps in CFLAGS/CXXFLAGS (10.5 build support), r=ted, a=blocking1.9+

This commit is contained in:
nrthomas@gmail.com 2008-03-17 10:39:00 -07:00
parent fb8dee4003
commit e6809fd8bb
3 changed files with 17 additions and 2 deletions

View File

@ -65,3 +65,9 @@ FORCE_STATIC_LIB = 1
FORCE_USE_PIC = 1
include $(topsrcdir)/config/rules.mk
# XXX, bug 417045, make -jN combines badly with -save-temps in
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
.NOTPARALLEL:
endif

View File

@ -78,3 +78,9 @@ ifdef HOST_NSPR_MDCPUCFG
HOST_CFLAGS += -DMDCPUCFG=$(HOST_NSPR_MDCPUCFG)
endif
endif
# XXX, bug 417045, make -jN combines badly with -save-temps in
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
.NOTPARALLEL:
endif

View File

@ -90,5 +90,8 @@ endif
export::
@$(MAKE) libs
# XXX, bug 417045, make -jN combines badly with -save-temps in
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
.NOTPARALLEL:
endif