emscripten/tools/emconfiguren.py

19 строки
468 B
Python
Исходник Обычный вид История

#!/usr/bin/env python
import sys
print >> sys.stderr, '\n\nemconfiguren.py is deprecated! use "emconfigure"\n\n'
2011-12-15 04:16:59 +04:00
'''
This is a helper script for emmaken.py. See docs in that file for more info.
'''
import os, sys
__rootpath__ = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def path_from_root(*pathelems):
return os.path.join(__rootpath__, *pathelems)
exec(open(path_from_root('tools', 'shared.py'), 'r').read())
Building.configure(sys.argv[1:])