[pypy-commit] pypy default: Pffff, I see no way to pass down the original MAKEFLAGS to

arigo noreply at buildbot.pypy.org
Fri Nov 1 19:08:31 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r67800:ae161dea0ef2
Date: 2013-11-01 19:07 +0100
http://bitbucket.org/pypy/pypy/changeset/ae161dea0ef2/

Log:	Pffff, I see no way to pass down the original MAKEFLAGS to the
	subprocess. This makes the "-jN" option unusable. As a result,
	increase the time estimate...

diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -21,11 +21,8 @@
 else
 	@echo "Building a regular (jitting) version of PyPy, using"
 	@echo "$(PYPY_EXECUTABLE) to run the translation itself."
-	@echo "This takes around 45 minutes and $(URAM) GB of RAM."
+	@echo "This takes up to 1 hour and $(URAM) GB of RAM."
 endif
-	@echo
-	@echo "If you have N cores, consider running \`\`MAKEFLAGS=-jN make'' to"
-	@echo "speed up the last part  (but \`\`make -jN'' does not work!)"
 	@echo "===================================================================="
 	@echo
 	@sleep 5


More information about the pypy-commit mailing list