https://github.com/kripken/emscripten
Raw File
Tip revision: 7ecc5ed35b2b3cc78940609ea27af1e58a85f6af authored by Alon Zakai on 03 April 2013, 23:33:58 UTC
refactor toNiceIdent'ed outputs and avoid variable collisions
Tip revision: 7ecc5ed
em++
#!/usr/bin/env python2

'''
See emcc.py. This script forwards to there, noting that we want C++ and not C by default
'''

import os, subprocess, sys
from tools import shared

os.environ['EMMAKEN_CXX'] = '1'
exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:]))

back to top