2012-12-02 03:31:36 +04:00
|
|
|
#!/usr/bin/env python2
|
2011-12-15 04:16:59 +04:00
|
|
|
|
|
|
|
'''
|
2015-01-24 01:01:44 +03:00
|
|
|
This is a helper script. It runs ./configure (or cmake,
|
|
|
|
etc.) for you, setting the environment variables to use
|
|
|
|
emcc and so forth. Usage:
|
2011-12-22 05:00:43 +04:00
|
|
|
|
|
|
|
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.
|
2012-10-01 22:44:18 +04:00
|
|
|
|
|
|
|
Relevant defines:
|
|
|
|
|
|
|
|
CONFIGURE_CC - see emcc
|
2011-12-15 04:16:59 +04:00
|
|
|
'''
|
|
|
|
|
|
|
|
import os, sys
|
|
|
|
from tools import shared
|
2013-04-25 19:53:00 +04:00
|
|
|
from subprocess import CalledProcessError
|
2011-12-15 04:16:59 +04:00
|
|
|
|
2015-01-24 01:01:44 +03:00
|
|
|
if len(sys.argv) < 2 or ('configure' not in sys.argv[1] and 'cmake' not in sys.argv[1]):
|
2015-01-23 02:12:16 +03:00
|
|
|
print >> sys.stderr, '''
|
|
|
|
emconfigure is a helper for configure, setting various environment
|
2015-02-09 08:27:58 +03:00
|
|
|
variables so that emcc etc. are used. Typical usage:
|
2015-01-23 02:12:16 +03:00
|
|
|
|
2015-02-09 08:27:58 +03:00
|
|
|
emconfigure ./configure [FLAGS]
|
2015-01-23 02:12:16 +03:00
|
|
|
|
2015-02-09 08:27:58 +03:00
|
|
|
(but you can run any command instead of configure)
|
2015-01-23 02:12:16 +03:00
|
|
|
|
|
|
|
'''
|
|
|
|
|
2013-04-25 19:53:00 +04:00
|
|
|
try:
|
|
|
|
shared.Building.configure(sys.argv[1:])
|
|
|
|
except CalledProcessError, e:
|
2013-04-25 19:54:22 +04:00
|
|
|
sys.exit(e.returncode)
|
2011-12-15 04:16:59 +04:00
|
|
|
|