[pypy-commit] pypy default: Rename the --output option to --really-force-output, and document it

arigo noreply at buildbot.pypy.org
Thu Feb 5 16:52:02 CET 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r75726:babfa1dd27a5
Date: 2015-02-05 16:51 +0100
http://bitbucket.org/pypy/pypy/changeset/babfa1dd27a5/

Log:	Rename the --output option to --really-force-output, and document it
	as "don't use with PyPy".

diff --git a/rpython/config/translationoption.py b/rpython/config/translationoption.py
--- a/rpython/config/translationoption.py
+++ b/rpython/config/translationoption.py
@@ -151,7 +151,9 @@
                default=False, cmdline="--dont-write-c-files"),
     ArbitraryOption("instrumentctl", "internal",
                default=None),
-    StrOption("output", "Output file name", cmdline="--output"),
+    StrOption("output", "Output file name (don't change for PyPy!"
+              " doesn't work with virtualenv+shared: issue 1971)",
+              cmdline="--really-force-output"),
     StrOption("secondaryentrypoints",
             "Comma separated list of keys choosing secondary entrypoints",
             cmdline="--entrypoints", default="main"),


More information about the pypy-commit mailing list