blob: 1a90915aeeeecd4b8eeb7fffe2230bf1b384efd6 [file] [log] [blame]
#!/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']))