2012-04-25 01:47:33 +04:00
|
|
|
#!/usr/bin/env python
|
2010-09-10 07:03:24 +04:00
|
|
|
|
2011-10-13 22:40:46 +04:00
|
|
|
'''
|
2012-01-22 05:16:50 +04:00
|
|
|
You should normally never use this! Use emcc instead.
|
2011-10-13 22:40:46 +04:00
|
|
|
|
2012-01-22 05:16:50 +04:00
|
|
|
This is a small wrapper script around the core JS compiler. This calls that
|
|
|
|
compiler with the settings given to it. It can also read data from C/C++
|
|
|
|
header files (so that the JS compiler can see the constants in those
|
|
|
|
headers, for the libc implementation in JS).
|
2011-10-13 22:40:46 +04:00
|
|
|
'''
|
|
|
|
|
2012-11-07 04:01:01 +04:00
|
|
|
import os, sys, json, optparse, subprocess, re, time, multiprocessing
|
2010-09-10 07:03:24 +04:00
|
|
|
|
2012-02-05 22:37:40 +04:00
|
|
|
if not os.environ.get('EMSCRIPTEN_SUPPRESS_USAGE_WARNING'):
|
|
|
|
print >> sys.stderr, '''
|
|
|
|
==============================================================
|
|
|
|
WARNING: You should normally never use this! Use emcc instead.
|
|
|
|
==============================================================
|
|
|
|
'''
|
|
|
|
|
|
|
|
from tools import shared
|
2011-01-15 09:44:52 +03:00
|
|
|
|
2012-11-06 00:24:46 +04:00
|
|
|
DEBUG = os.environ.get('EMCC_DEBUG')
|
|
|
|
|
2011-10-05 22:12:45 +04:00
|
|
|
__rootpath__ = os.path.abspath(os.path.dirname(__file__))
|
2011-09-23 14:43:03 +04:00
|
|
|
def path_from_root(*pathelems):
|
|
|
|
"""Returns the absolute path for which the given path elements are
|
|
|
|
relative to the emscripten root.
|
|
|
|
"""
|
2011-10-05 22:12:45 +04:00
|
|
|
return os.path.join(__rootpath__, *pathelems)
|
2011-07-07 11:38:35 +04:00
|
|
|
|
2011-12-12 03:24:04 +04:00
|
|
|
temp_files = shared.TempFiles()
|
2011-07-07 11:38:35 +04:00
|
|
|
|
2012-11-07 09:11:18 +04:00
|
|
|
compiler_engine = None
|
2011-07-08 08:04:38 +04:00
|
|
|
|
2012-11-06 00:24:46 +04:00
|
|
|
def scan(ll, settings):
|
|
|
|
# blockaddress(@main, %23)
|
|
|
|
blockaddrs = []
|
|
|
|
for blockaddr in re.findall('blockaddress\([^)]*\)', ll):
|
|
|
|
b = blockaddr.split('(')[1][:-1].split(', ')
|
|
|
|
blockaddrs.append(b)
|
|
|
|
if len(blockaddrs) > 0:
|
|
|
|
settings['NECESSARY_BLOCKADDRS'] = blockaddrs
|
|
|
|
|
2012-11-07 04:29:33 +04:00
|
|
|
NUM_CHUNKS_PER_CORE = 4
|
|
|
|
MIN_CHUNK_SIZE = 1024*1024
|
2012-11-07 21:59:35 +04:00
|
|
|
MAX_CHUNK_SIZE = float(os.environ.get('EMSCRIPT_MAX_CHUNK_SIZE') or 'inf') # configuring this is just for debugging purposes
|
2012-11-07 03:43:24 +04:00
|
|
|
|
2012-11-07 01:51:48 +04:00
|
|
|
def process_funcs(args):
|
|
|
|
i, ll, settings_file, compiler, forwarded_file, libraries = args
|
|
|
|
funcs_file = temp_files.get('.func_%d.ll' % i).name
|
|
|
|
open(funcs_file, 'w').write(ll)
|
2012-11-07 09:11:18 +04:00
|
|
|
out = shared.run_js(compiler, compiler_engine, [settings_file, funcs_file, 'funcs', forwarded_file] + libraries, stdout=subprocess.PIPE, cwd=path_from_root('src'))
|
2012-11-14 02:54:40 +04:00
|
|
|
shared.try_delete(funcs_file)
|
2012-11-07 01:51:48 +04:00
|
|
|
return out.split('//FORWARDED_DATA:')
|
|
|
|
|
2012-04-14 05:57:41 +04:00
|
|
|
def emscript(infile, settings, outfile, libraries=[]):
|
2012-11-06 00:24:46 +04:00
|
|
|
"""Runs the emscripten LLVM-to-JS compiler. We parallelize as much as possible
|
2011-07-07 11:38:35 +04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
infile: The path to the input LLVM assembly file.
|
2012-11-06 00:24:46 +04:00
|
|
|
settings: JSON-formatted settings that override the values
|
2011-07-07 11:38:35 +04:00
|
|
|
defined in src/settings.js.
|
|
|
|
outfile: The file where the output is written.
|
|
|
|
"""
|
2012-11-06 00:24:46 +04:00
|
|
|
|
|
|
|
compiler = path_from_root('src', 'compiler.js')
|
|
|
|
|
2012-11-06 22:46:04 +04:00
|
|
|
# Parallelization: We run 3 phases:
|
2012-11-06 00:24:46 +04:00
|
|
|
# 1 aka 'pre' : Process types and metadata and so forth, and generate the preamble.
|
|
|
|
# 2 aka 'funcs': Process functions. We can parallelize this, working on each function independently.
|
|
|
|
# 3 aka 'post' : Process globals, generate postamble and finishing touches.
|
|
|
|
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, 'emscript: ll=>js'
|
|
|
|
|
2012-11-06 00:24:46 +04:00
|
|
|
# Pre-scan ll and alter settings as necessary
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-06 00:24:46 +04:00
|
|
|
ll = open(infile).read()
|
|
|
|
scan(ll, settings)
|
2012-11-07 04:29:33 +04:00
|
|
|
total_ll_size = len(ll)
|
2012-11-06 00:24:46 +04:00
|
|
|
ll = None # allow collection
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: scan took %s seconds' % (time.time() - t)
|
2012-11-06 00:24:46 +04:00
|
|
|
|
|
|
|
# Split input into the relevant parts for each phase
|
2012-11-06 23:14:29 +04:00
|
|
|
pre = []
|
2012-11-06 00:24:46 +04:00
|
|
|
funcs = [] # split up functions here, for parallelism later
|
2012-11-06 23:14:29 +04:00
|
|
|
meta = [] # needed by each function XXX
|
|
|
|
post = []
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-06 00:24:46 +04:00
|
|
|
in_func = False
|
|
|
|
ll_lines = open(infile).readlines()
|
|
|
|
for line in ll_lines:
|
|
|
|
if in_func:
|
2012-11-06 23:14:29 +04:00
|
|
|
funcs[-1].append(line)
|
2012-11-06 00:24:46 +04:00
|
|
|
if line.startswith('}'):
|
|
|
|
in_func = False
|
2012-11-07 03:43:24 +04:00
|
|
|
funcs[-1] = ''.join(funcs[-1])
|
2012-11-07 02:24:35 +04:00
|
|
|
pre.append(line) # pre needs it to, so we know about all implemented functions
|
2012-11-06 00:24:46 +04:00
|
|
|
else:
|
|
|
|
if line.startswith('define '):
|
|
|
|
in_func = True
|
2012-11-06 23:14:29 +04:00
|
|
|
funcs.append([line])
|
2012-11-07 02:24:35 +04:00
|
|
|
pre.append(line) # pre needs it to, so we know about all implemented functions
|
2012-11-06 00:24:46 +04:00
|
|
|
elif line.find(' = type { ') > 0:
|
2012-11-06 23:14:29 +04:00
|
|
|
pre.append(line) # type
|
2012-11-06 00:24:46 +04:00
|
|
|
elif line.startswith('!'):
|
2012-11-06 23:14:29 +04:00
|
|
|
meta.append(line) # metadata
|
2012-11-06 00:24:46 +04:00
|
|
|
else:
|
2012-11-06 23:14:29 +04:00
|
|
|
post.append(line) # global
|
|
|
|
pre.append(line) # pre needs it to, so we know about globals in pre and funcs
|
2012-11-06 00:24:46 +04:00
|
|
|
ll_lines = None
|
2012-11-07 01:58:45 +04:00
|
|
|
meta = ''.join(meta)
|
|
|
|
if DEBUG and len(meta) > 1024*1024: print >> sys.stderr, 'emscript warning: large amounts of metadata, will slow things down'
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: split took %s seconds' % (time.time() - t)
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-06 23:14:29 +04:00
|
|
|
#if DEBUG:
|
|
|
|
# print >> sys.stderr, '========= pre ================\n'
|
|
|
|
# print >> sys.stderr, ''.join(pre)
|
|
|
|
# print >> sys.stderr, '========== funcs ===============\n'
|
|
|
|
# for func in funcs:
|
|
|
|
# print >> sys.stderr, '\n// ===\n\n', ''.join(func)
|
|
|
|
# print >> sys.stderr, '========== post ==============\n'
|
|
|
|
# print >> sys.stderr, ''.join(post)
|
|
|
|
# print >> sys.stderr, '=========================\n'
|
2012-11-06 00:24:46 +04:00
|
|
|
|
|
|
|
# Save settings to a file to work around v8 issue 1579
|
|
|
|
settings_file = temp_files.get('.txt').name
|
2011-07-30 21:26:30 +04:00
|
|
|
s = open(settings_file, 'w')
|
2012-11-06 00:24:46 +04:00
|
|
|
s.write(json.dumps(settings))
|
2011-07-30 21:26:30 +04:00
|
|
|
s.close()
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-07 02:46:25 +04:00
|
|
|
# Phase 1 - pre
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-06 23:14:29 +04:00
|
|
|
pre_file = temp_files.get('.pre.ll').name
|
2012-11-07 01:58:45 +04:00
|
|
|
open(pre_file, 'w').write(''.join(pre) + '\n' + meta)
|
2012-11-06 00:24:46 +04:00
|
|
|
out = shared.run_js(compiler, shared.COMPILER_ENGINE, [settings_file, pre_file, 'pre'] + libraries, stdout=subprocess.PIPE, cwd=path_from_root('src'))
|
|
|
|
js, forwarded_data = out.split('//FORWARDED_DATA:')
|
|
|
|
#print 'js', js
|
|
|
|
#print >> sys.stderr, 'FORWARDED_DATA 1:', forwarded_data, type(forwarded_data)
|
|
|
|
forwarded_file = temp_files.get('.json').name
|
|
|
|
open(forwarded_file, 'w').write(forwarded_data)
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: phase 1 took %s seconds' % (time.time() - t)
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-07 02:46:25 +04:00
|
|
|
# Phase 2 - func
|
2012-11-07 04:29:33 +04:00
|
|
|
|
|
|
|
cores = multiprocessing.cpu_count()
|
|
|
|
assert cores >= 1
|
2012-11-08 06:57:43 +04:00
|
|
|
if cores > 1:
|
|
|
|
intended_num_chunks = cores * NUM_CHUNKS_PER_CORE
|
|
|
|
chunk_size = max(MIN_CHUNK_SIZE, total_ll_size / intended_num_chunks)
|
|
|
|
chunk_size += len(forwarded_data)/3 + 3*len(meta) # keep ratio of lots of function code to meta (expensive to process) and forwarded (cheap)
|
|
|
|
chunk_size = min(MAX_CHUNK_SIZE, chunk_size)
|
|
|
|
else:
|
|
|
|
chunk_size = MAX_CHUNK_SIZE # if 1 core, just use the max chunk size
|
2012-11-07 04:29:33 +04:00
|
|
|
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-07 01:51:48 +04:00
|
|
|
forwarded_json = json.loads(forwarded_data)
|
|
|
|
indexed_functions = set()
|
2012-11-07 03:43:24 +04:00
|
|
|
chunks = [] # bundles of functions
|
|
|
|
curr = ''
|
2012-11-07 01:51:48 +04:00
|
|
|
for i in range(len(funcs)):
|
|
|
|
func = funcs[i]
|
2012-11-07 04:29:33 +04:00
|
|
|
if len(curr) + len(func) < chunk_size:
|
2012-11-07 03:43:24 +04:00
|
|
|
curr += func
|
|
|
|
else:
|
|
|
|
chunks.append(curr)
|
2012-11-07 03:48:26 +04:00
|
|
|
curr = func
|
2012-11-07 03:43:24 +04:00
|
|
|
if curr:
|
|
|
|
chunks.append(curr)
|
|
|
|
curr = ''
|
2012-11-08 06:57:43 +04:00
|
|
|
if cores == 1 and total_ll_size < MAX_CHUNK_SIZE: assert len(chunks) == 1, 'no point in splitting up without multiple cores'
|
2012-11-08 06:19:15 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: phase 2 working on %d chunks %s (intended chunk size: %.2f MB, meta: %.2f MB, forwarded: %.2f)' % (len(chunks), ('using %d cores' % cores) if len(chunks) > 1 else '', chunk_size/(1024*1024.), len(meta)/(1024*1024.), len(forwarded_data)/(1024*1024.))
|
2012-11-07 04:29:33 +04:00
|
|
|
|
2012-11-10 23:26:23 +04:00
|
|
|
commands = [(i, chunks[i] + '\n' + meta, settings_file, compiler, forwarded_file, libraries) for i in range(len(chunks))]
|
2012-11-07 05:05:45 +04:00
|
|
|
|
|
|
|
if len(chunks) > 1:
|
|
|
|
pool = multiprocessing.Pool(processes=cores)
|
|
|
|
outputs = pool.map(process_funcs, commands, chunksize=1)
|
|
|
|
else:
|
|
|
|
outputs = [process_funcs(commands[0])]
|
|
|
|
|
|
|
|
for funcs_js, curr_forwarded_data in outputs:
|
2012-11-07 01:51:48 +04:00
|
|
|
js += funcs_js
|
|
|
|
# merge forwarded data
|
|
|
|
curr_forwarded_json = json.loads(curr_forwarded_data)
|
|
|
|
forwarded_json['Types']['preciseI64MathUsed'] = forwarded_json['Types']['preciseI64MathUsed'] or curr_forwarded_json['Types']['preciseI64MathUsed']
|
|
|
|
for key, value in curr_forwarded_json['Functions']['blockAddresses'].iteritems():
|
|
|
|
forwarded_json['Functions']['blockAddresses'][key] = value
|
|
|
|
for key in curr_forwarded_json['Functions']['indexedFunctions'].iterkeys():
|
|
|
|
indexed_functions.add(key)
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: phase 2 took %s seconds' % (time.time() - t)
|
2012-11-07 01:51:48 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-07 05:05:45 +04:00
|
|
|
|
2012-11-07 01:51:48 +04:00
|
|
|
# calculations on merged forwarded data
|
|
|
|
forwarded_json['Functions']['indexedFunctions'] = {}
|
|
|
|
i = 2
|
|
|
|
for indexed in indexed_functions:
|
2012-11-07 05:15:28 +04:00
|
|
|
forwarded_json['Functions']['indexedFunctions'][indexed] = i # make sure not to modify this python object later - we use it in indexize
|
2012-11-07 01:51:48 +04:00
|
|
|
i += 2
|
|
|
|
forwarded_json['Functions']['nextIndex'] = i
|
2012-11-07 05:15:28 +04:00
|
|
|
indexing = forwarded_json['Functions']['indexedFunctions']
|
2012-11-07 01:51:48 +04:00
|
|
|
def indexize(js):
|
2012-11-07 05:15:28 +04:00
|
|
|
return re.sub(r'{{{ FI_([\w\d_$]+) }}}', lambda m: str(indexing[m.groups(0)[0]]), js)
|
2012-11-07 01:51:48 +04:00
|
|
|
# forward
|
|
|
|
forwarded_data = json.dumps(forwarded_json)
|
|
|
|
forwarded_file = temp_files.get('.2.json').name
|
|
|
|
open(forwarded_file, 'w').write(forwarded_data)
|
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: phase 2b took %s seconds' % (time.time() - t)
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-07 02:46:25 +04:00
|
|
|
# Phase 3 - post
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: t = time.time()
|
2012-11-06 23:14:29 +04:00
|
|
|
post_file = temp_files.get('.post.ll').name
|
2012-11-07 01:58:45 +04:00
|
|
|
open(post_file, 'w').write(''.join(post) + '\n' + meta)
|
2012-11-06 00:24:46 +04:00
|
|
|
out = shared.run_js(compiler, shared.COMPILER_ENGINE, [settings_file, post_file, 'post', forwarded_file] + libraries, stdout=subprocess.PIPE, cwd=path_from_root('src'))
|
|
|
|
js += out
|
2012-11-07 05:27:27 +04:00
|
|
|
js = indexize(js)
|
2012-11-06 22:46:04 +04:00
|
|
|
if DEBUG: print >> sys.stderr, ' emscript: phase 3 took %s seconds' % (time.time() - t)
|
2012-11-06 00:24:46 +04:00
|
|
|
|
2012-11-07 01:51:48 +04:00
|
|
|
outfile.write(js) # TODO: write in parts (see previous line though)
|
2011-07-07 11:38:35 +04:00
|
|
|
outfile.close()
|
|
|
|
|
|
|
|
|
|
|
|
def main(args):
|
|
|
|
# Prepare settings for serialization to JSON.
|
|
|
|
settings = {}
|
|
|
|
for setting in args.settings:
|
2011-07-13 23:30:29 +04:00
|
|
|
name, value = setting.strip().split('=', 1)
|
2011-07-07 11:38:35 +04:00
|
|
|
settings[name] = json.loads(value)
|
|
|
|
|
2011-09-25 10:26:59 +04:00
|
|
|
# Add header defines to settings
|
|
|
|
defines = {}
|
|
|
|
include_root = path_from_root('system', 'include')
|
2011-09-25 21:33:17 +04:00
|
|
|
headers = args.headers[0].split(',') if len(args.headers) > 0 else []
|
2011-09-26 05:56:58 +04:00
|
|
|
seen_headers = set()
|
2011-09-25 10:26:59 +04:00
|
|
|
while len(headers) > 0:
|
|
|
|
header = headers.pop(0)
|
|
|
|
if not os.path.isabs(header):
|
|
|
|
header = os.path.join(include_root, header)
|
2011-09-26 05:56:58 +04:00
|
|
|
seen_headers.add(header)
|
2011-09-25 10:26:59 +04:00
|
|
|
for line in open(header, 'r'):
|
|
|
|
line = line.replace('\t', ' ')
|
2011-09-26 05:56:58 +04:00
|
|
|
m = re.match('^ *# *define +(?P<name>[-\w_.]+) +\(?(?P<value>[-\w_.|]+)\)?.*', line)
|
2011-10-02 19:44:32 +04:00
|
|
|
if not m:
|
|
|
|
# Catch enum defines of a very limited sort
|
|
|
|
m = re.match('^ +(?P<name>[A-Z_\d]+) += +(?P<value>\d+).*', line)
|
2011-09-25 10:26:59 +04:00
|
|
|
if m:
|
2011-10-02 19:44:32 +04:00
|
|
|
if m.group('name') != m.group('value'):
|
|
|
|
defines[m.group('name')] = m.group('value')
|
|
|
|
#else:
|
|
|
|
# print 'Warning: %s #defined to itself' % m.group('name') # XXX this can happen if we are set to be equal to an enum (with the same name)
|
2011-09-26 05:56:58 +04:00
|
|
|
m = re.match('^ *# *include *["<](?P<name>[\w_.-/]+)[">].*', line)
|
2011-09-25 10:26:59 +04:00
|
|
|
if m:
|
|
|
|
# Find this file
|
|
|
|
found = False
|
|
|
|
for w in [w for w in os.walk(include_root)]:
|
|
|
|
for f in w[2]:
|
|
|
|
curr = os.path.join(w[0], f)
|
2011-09-26 05:56:58 +04:00
|
|
|
if curr.endswith(m.group('name')) and curr not in seen_headers:
|
2011-09-25 10:26:59 +04:00
|
|
|
headers.append(curr)
|
|
|
|
found = True
|
|
|
|
break
|
|
|
|
if found: break
|
|
|
|
#assert found, 'Could not find header: ' + m.group('name')
|
|
|
|
if len(defines) > 0:
|
2011-09-25 12:20:34 +04:00
|
|
|
def lookup(value):
|
|
|
|
try:
|
|
|
|
while not unicode(value).isnumeric():
|
|
|
|
value = defines[value]
|
|
|
|
return value
|
|
|
|
except:
|
2011-09-25 21:28:19 +04:00
|
|
|
pass
|
|
|
|
try: # 0x300 etc.
|
|
|
|
value = eval(value)
|
|
|
|
return value
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
try: # CONST1|CONST2
|
|
|
|
parts = map(lookup, value.split('|'))
|
|
|
|
value = reduce(lambda a, b: a|b, map(eval, parts))
|
|
|
|
return value
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
return None
|
2011-09-25 12:20:34 +04:00
|
|
|
for key, value in defines.items():
|
|
|
|
value = lookup(value)
|
|
|
|
if value is not None:
|
|
|
|
defines[key] = str(value)
|
|
|
|
else:
|
|
|
|
del defines[key]
|
2012-01-08 23:19:33 +04:00
|
|
|
#print >> sys.stderr, 'new defs:', str(defines).replace(',', ',\n '), '\n\n'
|
|
|
|
settings.setdefault('C_DEFINES', {}).update(defines)
|
2011-09-25 10:26:59 +04:00
|
|
|
|
2012-04-14 05:57:41 +04:00
|
|
|
# libraries
|
|
|
|
libraries = args.libraries[0].split(',') if len(args.libraries) > 0 else []
|
|
|
|
|
2011-07-07 11:38:35 +04:00
|
|
|
# Compile the assembly to Javascript.
|
2012-11-11 02:37:15 +04:00
|
|
|
if settings.get('RELOOP'): shared.Building.ensure_relooper()
|
|
|
|
|
2012-11-06 00:24:46 +04:00
|
|
|
emscript(args.infile, settings, args.outfile, libraries)
|
2011-07-07 11:38:35 +04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2011-07-13 23:30:29 +04:00
|
|
|
parser = optparse.OptionParser(
|
2012-11-07 09:11:18 +04:00
|
|
|
usage='usage: %prog [-h] [-H HEADERS] [-o OUTFILE] [-c COMPILER_ENGINE] [-s FOO=BAR]* infile',
|
2012-01-22 05:16:50 +04:00
|
|
|
description=('You should normally never use this! Use emcc instead. '
|
|
|
|
'This is a wrapper around the JS compiler, converting .ll to .js.'),
|
|
|
|
epilog='')
|
2011-09-25 10:26:59 +04:00
|
|
|
parser.add_option('-H', '--headers',
|
|
|
|
default=[],
|
|
|
|
action='append',
|
|
|
|
help='System headers (comma separated) whose #defines should be exposed to the compiled code.')
|
2012-04-14 05:57:41 +04:00
|
|
|
parser.add_option('-L', '--libraries',
|
|
|
|
default=[],
|
|
|
|
action='append',
|
|
|
|
help='Library files (comma separated) to use in addition to those in emscripten src/library_*.')
|
2011-07-13 23:30:29 +04:00
|
|
|
parser.add_option('-o', '--outfile',
|
|
|
|
default=sys.stdout,
|
|
|
|
help='Where to write the output; defaults to stdout.')
|
2012-11-07 09:11:18 +04:00
|
|
|
parser.add_option('-c', '--compiler',
|
|
|
|
default=shared.COMPILER_ENGINE,
|
|
|
|
help='Which JS engine to use to run the compiler; defaults to the one in ~/.emscripten.')
|
2011-07-13 23:30:29 +04:00
|
|
|
parser.add_option('-s', '--setting',
|
|
|
|
dest='settings',
|
|
|
|
default=[],
|
|
|
|
action='append',
|
|
|
|
metavar='FOO=BAR',
|
|
|
|
help=('Overrides for settings defined in settings.js. '
|
|
|
|
'May occur multiple times.'))
|
|
|
|
|
|
|
|
# Convert to the same format that argparse would have produced.
|
|
|
|
keywords, positional = parser.parse_args()
|
|
|
|
if len(positional) != 1:
|
|
|
|
raise RuntimeError('Must provide exactly one positional argument.')
|
2011-07-30 21:43:43 +04:00
|
|
|
keywords.infile = os.path.abspath(positional[0])
|
2011-07-13 23:30:29 +04:00
|
|
|
if isinstance(keywords.outfile, basestring):
|
|
|
|
keywords.outfile = open(keywords.outfile, 'w')
|
2012-11-07 09:11:18 +04:00
|
|
|
compiler_engine = keywords.compiler
|
2011-07-08 08:38:42 +04:00
|
|
|
|
2011-12-12 03:24:04 +04:00
|
|
|
temp_files.run_and_clean(lambda: main(keywords))
|
|
|
|
|