blob: e68aaa547f0dd02115c1ba2b6a2c78ad50259c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env python
'''
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.
'''
import os, sys
from tools import shared
shared.Building.configure(sys.argv[1:])
|