https://github.com/kripken/emscripten
Raw File
Tip revision: de5ed239bdc0455629ad7cb74907450180a21f93 authored by Alon Zakai on 09 June 2015, 01:01:07 UTC
1.33.2
Tip revision: de5ed23
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