https://github.com/kripken/emscripten
Raw File
Tip revision: 426e3722a9c5ec612c3f039957cb698295a61cd4 authored by Alon Zakai on 27 January 2015, 23:26:47 UTC
1.29.7
Tip revision: 426e372
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