https://github.com/kripken/emscripten
Raw File
Tip revision: 209bd3315250a2fda1f4e6216072d67ffad971cb authored by Alon Zakai on 29 September 2015, 20:29:26 UTC
1.34.11
Tip revision: 209bd33
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

exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:] + ['--emscripten-cxx']))

back to top