https://github.com/kripken/emscripten
Raw File
Tip revision: e808b59eb686e48f590e3d8ca2ab2671498f22b4 authored by Alon Zakai on 15 January 2014, 18:21:03 UTC
Merge pull request #2018 from waywardmonkeys/updates3
Tip revision: e808b59
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