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

Maciej Fijalkowski fijall at gmail.com
Fri Feb 6 09:54:55 CET 2015


This change breaks places that recommend you to use --output (e.g.
check that you're not translating with the same executable)

On Thu, Feb 5, 2015 at 5:52 PM, arigo <noreply at buildbot.pypy.org> wrote:
> 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"),
> _______________________________________________
> pypy-commit mailing list
> pypy-commit at python.org
> https://mail.python.org/mailman/listinfo/pypy-commit


More information about the pypy-dev mailing list