https://github.com/kripken/emscripten
Raw File
Tip revision: cbcecd1c545ac96bee00a71f8fd8c1a76570c661 authored by Alon Zakai on 13 November 2015, 01:40:15 UTC
1.35.9
Tip revision: cbcecd1
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