Revision 65eb97cec6adb014e58a2e678f6802805383dc8c authored by Alon Zakai on 28 July 2014, 23:30:07 UTC, committed by Alon Zakai on 28 July 2014, 23:33:38 UTC
1 parent 77f8d39
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