https://github.com/kripken/emscripten
Raw File
Tip revision: 5eeccdefd379569c4b43596df6399665489efdd5 authored by Alon Zakai on 29 December 2014, 23:48:50 UTC
update llvm version to 3.5 ; 1.29.1
Tip revision: 5eeccde
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