Bug 604263: Disallow parallel builds with MSVC < 8. The patch is

contributed by Kyle Huey <khuey@kylehuey.com>.  r=wtc,neil.


git-svn-id: svn://10.0.0.236/trunk@261678 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
wtc%google.com
2010-12-17 21:09:33 +00:00
parent b3e67d74e5
commit 0d94a19000

View File

@@ -462,6 +462,14 @@ $(filter $(OBJDIR)/%.$(OBJ_SUFFIX),$(OBJS)): $(OBJDIR)/%.$(OBJ_SUFFIX): $(DUMMY_
# Special gmake rules.
################################################################################
#
# Disallow parallel builds with MSVC < 8 since it can't open the PDB file in
# parallel.
#
ifeq (,$(filter-out 1200 1300 1310,$(MSC_VER)))
.NOTPARALLEL:
endif
#
# Re-define the list of default suffixes, so gmake won't have to churn through
# hundreds of built-in suffix rules for stuff we don't need.