https://github.com/kripken/emscripten
Raw File
Tip revision: ac3bc5d8e7e40d08e4b1c7e3fccd1cdc126a2f38 authored by Alon Zakai on 17 December 2014, 00:34:19 UTC
junction variable sorting, to make output deterministic
Tip revision: ac3bc5d
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