def start(): setgx(newgx()) print '*** SHED SKIN Python-to-C++ Compiler 0.7.1 ***' print 'Copyright 2005-2010 Mark Dufour; License GNU GPL version 3 (See LICENSE)' print # --- some checks major, minor = sys.version_info[:2] if (major, minor) not in [(2, 4), (2, 5), (2, 6), (2, 7)]: print '*ERROR* Shed Skin is not compatible with this version of Python' sys.exit(1) if sys.platform == 'win32' and os.path.isdir('c:/mingw'): print '*ERROR* please rename or remove c:/mingw, as it conflicts with Shed Skin' sys.exit() # --- command-line options try: opts, args = getopt.getopt(sys.argv[1:], 'vbchef:wad:m:rolsp', ['help', 'extmod', 'nobounds', 'nowrap', 'flags=', 'dir=', 'makefile=', 'random', 'noassert', 'long', 'msvc', 'ann', 'strhash', 'iterations=', 'pypy']) except getopt.GetoptError: usage() for o, a in opts: if o in ['-h', '--help']: usage() if o in ['-b', '--nobounds']: getgx().bounds_checking = False if o in ['-e', '--extmod']: getgx().extension_module = True if o in ['-a', '--ann']: getgx().annotation = True if o in ['-d', '--dir']: getgx().output_dir = a if o in ['-l', '--long']: getgx().longlong = True if o in ['-w', '--nowrap']: getgx().wrap_around_check = False if o in ['-r', '--random']: getgx().fast_random = True if o in ['-o', '--noassert']: getgx().assertions = False if o in ['-p', '--pypy']: getgx().pypy = True if o in ['-m', '--makefile']: getgx().makefile_name = a if o in ['-s', '--strhash']: getgx().fast_hash = True if o in ['-v', '--msvc']: getgx().msvc = True if o in ['-i', '--iterations']: getgx().max_iterations = int(a) if o in ['-f', '--flags']: if not os.path.isfile(a): print "*ERROR* no such file: '%s'" % a sys.exit(1) getgx().flags = a # --- argument if len(args) != 1: usage() name = args[0] if not name.endswith('.py'): name += '.py' if not os.path.isfile(name): print "*ERROR* no such file: '%s'" % name sys.exit(1) getgx().main_mod = name[:-3] # --- analyze & annotate infer.analyze(name) annotate.annotate() cpp.generate_code() shared.print_errors()
def start(gx, main_module_name): # --- analyze & annotate t0 = time.time() analyze(gx, main_module_name) annotate(gx) generate_code(gx) print_errors() logging.info('[elapsed time: %.2f seconds]', (time.time() - t0))
def start(gx, main_module_name): # --- analyze & annotate t0 = time.time() analyze(gx, main_module_name) annotate(gx) generate_code(gx) print_errors() if not gx.silent: print '[elapsed time: %.2f seconds]' % (time.time() - t0)
def main(): setgx(newgx()) print '*** SHED SKIN Python-to-C++ Compiler 0.5 ***' print 'Copyright 2005-2010 Mark Dufour; License GNU GPL version 3 (See LICENSE)' print # --- some checks major, minor = sys.version_info[:2] if (major, minor) not in [(2, 4), (2, 5), (2, 6)]: print '*ERROR* Shed Skin is not compatible with this version of Python' sys.exit(1) if sys.platform == 'win32' and os.path.isdir('c:/mingw'): print '*ERROR* please rename or remove c:/mingw, as it conflicts with Shed Skin' sys.exit() # --- command-line options try: opts, args = getopt.getopt(sys.argv[1:], 'vbchef:wad:m:rl', [ 'extmod', 'nobounds', 'nowrap', 'flags=', 'dir=', 'makefile=', 'random', 'long', 'msvc' ]) except getopt.GetoptError: usage() for o, a in opts: if o in ['-h', '--help']: usage() if o in ['-b', '--nobounds']: getgx().bounds_checking = False if o in ['-e', '--extmod']: getgx().extension_module = True if o in ['-a', '--ann']: getgx().annotation = True if o in ['-d', '--dir']: getgx().output_dir = a if o in ['-l', '--long']: getgx().longlong = True if o in ['-w', '--nowrap']: getgx().wrap_around_check = False if o in ['-r', '--random']: getgx().fast_random = True if o in ['-m', '--makefile']: getgx().makefile_name = a if o in ['-v', '--msvc']: getgx().msvc = True if o in ['-f', '--flags']: if not os.path.isfile(a): print "*ERROR* no such file: '%s'" % a sys.exit(1) getgx().flags = a # --- argument if len(args) != 1: usage() name = args[0] if not name.endswith('.py'): name += '.py' if not os.path.isfile(name): print "*ERROR* no such file: '%s'" % name sys.exit(1) getgx().main_mod = name[:-3] # --- analyze & annotate infer.analyze(name) annotate.annotate() cpp.generate_code()
def start(): setgx(newgx()) # --- command-line options try: opts, args = getopt.getopt(sys.argv[1:], 'vbchef:wad:m:rolspxngL:', [ 'help', 'extmod', 'nobounds', 'nowrap', 'flags=', 'debug=', 'makefile=', 'random', 'noassert', 'long', 'msvc', 'ann', 'strhash', 'pypy', 'traceback', 'silent', 'nogcwarns', 'lib' ]) except getopt.GetoptError: usage() for o, a in opts: if o in ['-h', '--help']: usage() if o in ['-b', '--nobounds']: getgx().bounds_checking = False if o in ['-e', '--extmod']: getgx().extension_module = True if o in ['-a', '--ann']: getgx().annotation = True if o in ['-d', '--debug']: getgx().debug_level = int(a) if o in ['-l', '--long']: getgx().longlong = True if o in ['-g', '--nogcwarns']: getgx().gcwarns = False if o in ['-w', '--nowrap']: getgx().wrap_around_check = False if o in ['-r', '--random']: getgx().fast_random = True if o in ['-o', '--noassert']: getgx().assertions = False if o in ['-p', '--pypy']: getgx().pypy = True if o in ['-m', '--makefile']: getgx().makefile_name = a if o in ['-n', '--silent']: getgx().silent = True if o in ['-s', '--strhash']: getgx().fast_hash = True if o in ['-v', '--msvc']: getgx().msvc = True if o in ['-x', '--traceback']: getgx().backtrace = True if o in ['-L', '--lib']: getgx().libdirs = [a] + getgx().libdirs if o in ['-f', '--flags']: if not os.path.isfile(a): print "*ERROR* no such file: '%s'" % a sys.exit(1) getgx().flags = a if not getgx().silent: print '*** SHED SKIN Python-to-C++ Compiler 0.9.2 ***' print 'Copyright 2005-2011 Mark Dufour; License GNU GPL version 3 (See LICENSE)' print # --- some checks major, minor = sys.version_info[:2] if (major, minor) not in [(2, 4), (2, 5), (2, 6), (2, 7)]: print '*ERROR* Shed Skin is not compatible with this version of Python' sys.exit(1) if sys.platform == 'win32' and os.path.isdir('c:/mingw'): print '*ERROR* please rename or remove c:/mingw, as it conflicts with Shed Skin' sys.exit() # --- argument if len(args) != 1: usage() name = args[0] if not name.endswith('.py'): name += '.py' if not os.path.isfile(name): print "*ERROR* no such file: '%s'" % name sys.exit(1) getgx().main_mod = name[:-3] # --- analyze & annotate t0 = time.time() infer.analyze(name) annotate.annotate() cpp.generate_code() shared.print_errors() if not getgx().silent: print '[elapsed time: %.2f seconds]' % (time.time() - t0)