churchyard / rpms / python3

Forked from rpms/python3 6 years ago
Clone

Blame python-3.2a1-fix-parallel-make.patch

7eb10c8
diff -up Python-3.2a1/Makefile.pre.in.parallel-grammar Python-3.2a1/Makefile.pre.in
7eb10c8
--- Python-3.2a1/Makefile.pre.in.parallel-grammar	2010-08-20 15:09:13.613527156 -0400
7eb10c8
+++ Python-3.2a1/Makefile.pre.in	2010-08-20 15:10:31.428135355 -0400
7eb10c8
@@ -222,6 +222,7 @@ IO_OBJS=	\
4c1f6da
 
4c1f6da
 ##########################################################################
4c1f6da
 # Grammar
4c1f6da
+GRAMMAR_STAMP=	$(srcdir)/grammar-stamp
4c1f6da
 GRAMMAR_H=	$(srcdir)/Include/graminit.h
4c1f6da
 GRAMMAR_C=	$(srcdir)/Python/graminit.c
4c1f6da
 GRAMMAR_INPUT=	$(srcdir)/Grammar/Grammar
7eb10c8
@@ -557,9 +558,24 @@ Modules/python.o: $(srcdir)/Modules/pyth
4c1f6da
 
4c1f6da
 $(IO_OBJS): $(IO_H)
4c1f6da
 
4c1f6da
-$(GRAMMAR_H) $(GRAMMAR_C): $(PGEN) $(GRAMMAR_INPUT)
4c1f6da
+# GNU "make" interprets rules with two dependents as two copies of the rule.
4c1f6da
+#
4c1f6da
+# In a parallel build this can lead to pgen being run twice, once for each of
4c1f6da
+# GRAMMAR_H and GRAMMAR_C, leading to race conditions in which the compiler
4c1f6da
+# reads a partially-overwritten copy of one of these files, leading to syntax
4c1f6da
+# errors (or linker errors if the fragment happens to be syntactically valid C)
4c1f6da
+#
4c1f6da
+# See http://www.gnu.org/software/hello/manual/automake/Multiple-Outputs.html
4c1f6da
+# for more information
4c1f6da
+#
4c1f6da
+# Introduce ".grammar-stamp" as a contrived single output from PGEN to avoid
4c1f6da
+# this:
4c1f6da
+$(GRAMMAR_H) $(GRAMMAR_C): $(GRAMMAR_STAMP)
4c1f6da
+
4c1f6da
+$(GRAMMAR_STAMP): $(PGEN) $(GRAMMAR_INPUT)
4c1f6da
 		-@$(INSTALL) -d Include
4c1f6da
 		-$(PGEN) $(GRAMMAR_INPUT) $(GRAMMAR_H) $(GRAMMAR_C)
4c1f6da
+		touch $(GRAMMAR_STAMP)
4c1f6da
 
4c1f6da
 $(PGEN):	$(PGENOBJS)
7eb10c8
 		$(CC) $(OPT) $(PY_LDFLAGS) $(PGENOBJS) $(LIBS) -o $(PGEN)