Revision 6df7a255c3ade022f4da4f165e48778db09f2e7e authored by Haneef Mubarak on 25 February 2014, 07:41:42 UTC, committed by Alon Zakai on 06 March 2014, 23:39:23 UTC
1 parent 82c7264
Raw File
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