Author: Maciej Fijalkowski <[email protected]> Branch: Changeset: r53621:0eb436c95405 Date: 2012-03-14 16:01 -0700 http://bitbucket.org/pypy/pypy/changeset/0eb436c95405/
Log: Add bin/rpython diff --git a/pypy/bin/rpython b/pypy/bin/rpython new file mode 100755 --- /dev/null +++ b/pypy/bin/rpython @@ -0,0 +1,18 @@ +#!/usr/bin/env pypy + +"""RPython translation usage: + +rpython <translation options> target <targetoptions> + +run with --help for more information +""" + +import sys +from pypy.translator.goal.translate import main + +# no implicit targets +if len(sys.argv) == 1: + print __doc__ + sys.exit(1) + +main() _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
