Revision 1979e5ccd8b0637f087a547f157769ff02cb7b48 authored by Alon Zakai on 06 March 2013, 19:52:00 UTC, committed by Alon Zakai on 06 March 2013, 19:52:00 UTC
Remove test_Os now that emcc supports -Os.
2 parent s 29a6a88 + 51892b5
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

os.environ['EMMAKEN_CXX'] = '1'
exit(subprocess.call([shared.PYTHON, shared.EMCC] + sys.argv[1:]))

back to top