https://github.com/kripken/emscripten
Raw File
Tip revision: 10a75424b243014f48faacbb75dc98260cc516fc authored by Alon Zakai on 25 July 2014, 19:49:10 UTC
do not link in libcxxabi demangle support just for default_terminate_handler; 1.21.7
Tip revision: 10a7542
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