2011-11-21 09:02:46 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
'''
|
|
|
|
See emcc.py. This script forwards to there, noting that we want C++ and not C by default
|
|
|
|
'''
|
|
|
|
|
|
|
|
import os, 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'
|
2011-12-11 22:23:03 +04:00
|
|
|
exit(os.execvp(shared.EMCC, [shared.EMCC] + sys.argv[1:]))
|
2011-11-21 09:02:46 +04:00
|
|
|
|