https://github.com/kripken/emscripten
Raw File
Tip revision: 4f6ffd478f167cc41f52c2932f4c82e3badea36f authored by Alon Zakai on 28 June 2013, 18:11:42 UTC
Merge branch 'relooper-improvements' of github.com:int3/emscripten into incoming
Tip revision: 4f6ffd4
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