Bug 696627 - Re-enable incremental linking for debug builds using VC10/11 r=khuey

This commit is contained in:
Matheus Kerschbaum 2011-10-28 15:05:06 +01:00
parent 04bd6b7659
commit 2483d4a76e

View File

@ -130,14 +130,14 @@ SDK_LIBRARY = $(SHARED_LIBRARY)
endif
# See bug 653662 - some builders are hitting an internal size limit
# on incremental builds. Disable this for debug builds for now. We may
# be able to revisit this after our builders are upgraded to something
# later than Visual Studio 2005.
# on incremental builds. Disable this for debug builds using VC8/9.
ifeq ($(OS_ARCH),WINNT)
ifeq (,$(filter-out 1400 1500,$(_MSC_VER)))
ifdef MOZ_DEBUG
EXTRA_DSO_LDOPTS += -INCREMENTAL:NO
endif
endif
endif
EXTRA_DSO_LDOPTS += $(LIBS_DIR) $(EXTRA_DSO_LIBS)