https://github.com/kripken/emscripten
Raw File
Tip revision: 5bb976ed71f1402f8f7853cc9a0c8ea4dd551615 authored by Alon Zakai on 16 January 2014, 22:42:22 UTC
add fnmatch; fixes #2002
Tip revision: 5bb976e
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