https://github.com/kripken/emscripten
Raw File
Tip revision: 143aaad0b77446ac7841583568f719258f93aa6b authored by Alon Zakai on 19 October 2015, 22:41:51 UTC
wip more preparations
Tip revision: 143aaad
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