https://github.com/kripken/emscripten
Raw File
Tip revision: d93fd8156ba2530d5ff12caaf9b0eaf557f60de5 authored by Alon Zakai on 08 April 2014, 00:39:39 UTC
Merge pull request #2256 from juj/more_musl
Tip revision: d93fd81
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