https://github.com/kripken/emscripten
Raw File
Tip revision: bc9414f39a8af7add2a4da59b7da6cc09ae0dde9 authored by Alon Zakai on 04 April 2014, 23:27:32 UTC
define memory in c backend output as a union of views
Tip revision: bc9414f
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