emscripten/em++

13 строки
275 B
Plaintext
Исходник Обычный вид История

#!/usr/bin/env python2
2011-11-21 09:02:46 +04:00
'''
See emcc.py. This script forwards to there, noting that we want C++ and not C by default
'''
import os, subprocess, sys
2011-12-11 22:23:03 +04:00
from tools import shared
2011-11-21 09:02:46 +04:00
os.environ['EMMAKEN_CXX'] = '1'
exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:]))
2011-11-21 09:02:46 +04:00