Revision 4472d14be1c843c8cdf358af25673756b8322ac1 authored by Alon Zakai on 07 April 2015, 03:25:00 UTC, committed by Alon Zakai on 07 April 2015, 03:25:00 UTC
1 parent 72b674e
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

exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:] + ['--emscripten-cxx']))

back to top