From bbaa9096952080214322935c3d6abb17db430e51 Mon Sep 17 00:00:00 2001 From: Armin Rigo Date: Tue, 26 Jul 2005 08:08:45 +0000 Subject: - moved marshal to a mixed module. - a few changes to geninterplevel to support it. - an option --compile="pyparseapp" to call the stablecompiler pure Python package at app-level (to be done!). --- pypy/tool/option.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'pypy/tool/option.py') diff --git a/pypy/tool/option.py b/pypy/tool/option.py index 8db1c9636c..d7309b1f69 100644 --- a/pypy/tool/option.py +++ b/pypy/tool/option.py @@ -12,7 +12,8 @@ class Options: uselibfile = 0 useparsermodule = "recparser" # "cpython" / "recparser" / "parser" compiler = "pyparse" # "cpython" - # "pyparse" pypy parser, cpython compiler + # "pyparse" pypy parser, cpython's compiler package + # "pyparseapp" same, running the compiler at app-level # "pycomp" pypy parser and compiler (TBD) version = "2.4" # "native" / "2.3" / "2.4" @@ -47,7 +48,7 @@ def get_standard_options(): options.append(make_option( '--compiler', action="store", type="string", dest="compiler", help="select the parser/compiler to use internally", - metavar="[cpython|pyparse]")) + metavar="[cpython|pyparse|pyparseapp]")) options.append(make_option( '--parsermodule', action="store",type="string", dest="useparsermodule", help="select the parser module to use", -- cgit v1.2.3-65-gdbad