From 967ebe37d46aadaeaf0a6fa494974d0b2fbad334 Mon Sep 17 00:00:00 2001 From: Maciej Fijalkowski Date: Wed, 14 Mar 2012 16:01:28 -0700 Subject: Add bin/rpython --- pypy/bin/rpython | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 pypy/bin/rpython (limited to 'pypy/bin') diff --git a/pypy/bin/rpython b/pypy/bin/rpython new file mode 100755 index 0000000000..881d727c2c --- /dev/null +++ b/pypy/bin/rpython @@ -0,0 +1,18 @@ +#!/usr/bin/env pypy + +"""RPython translation usage: + +rpython target + +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() -- cgit v1.2.3-65-gdbad