https://github.com/kripken/emscripten
Raw File
Tip revision: f96447d4bb387f9817523a1d277ddd0450e5c8cf authored by Alon Zakai on 03 July 2014, 00:17:09 UTC
update musl from 0.9.13 to 1.0.3
Tip revision: f96447d
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