emscripten/emconfigure

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

#!/usr/bin/env python2
2011-12-15 04:16:59 +04:00
'''
2011-12-22 05:00:43 +04:00
This is a helper script. It runs ./configure for you, setting
the environment variables to use emcc and so forth. Usage:
emconfigure ./configure [FLAGS]
You can also use this for cmake and other configure-like
stages. What happens is that all compilations done during
this command are to native code, not JS, so that configure
tests will work properly.
Relevant defines:
CONFIGURE_CC - see emcc
2011-12-15 04:16:59 +04:00
'''
import os, sys
from tools import shared
from subprocess import CalledProcessError
2011-12-15 04:16:59 +04:00
try:
shared.Building.configure(sys.argv[1:])
except CalledProcessError, e:
sys.exit(e.returncode)
2011-12-15 04:16:59 +04:00