https://github.com/kripken/emscripten
Raw File
Tip revision: 805ea30dc019c70f4598e8611b6728e337fbed59 authored by Alon Zakai on 19 November 2014, 23:10:36 UTC
1.27.0
Tip revision: 805ea30
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