Revision 475548d8c38134b9721cfca119cea18bc8d3f065 authored by Alon Zakai on 09 February 2014, 04:44:26 UTC, committed by Alon Zakai on 09 February 2014, 18:22:26 UTC
1 parent b3ab733
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