https://github.com/kripken/emscripten
Raw File
Tip revision: 6122398e08c4996f4bc41a6850c09d973d7e3694 authored by juj on 19 August 2014, 13:56:52 UTC
Merge pull request #2688 from juj/libcxx_map_selfassign_fix
Tip revision: 6122398
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