Revision ac3bc5d8e7e40d08e4b1c7e3fccd1cdc126a2f38 authored by Alon Zakai on 17 December 2014, 00:34:19 UTC, committed by Alon Zakai on 17 December 2014, 18:18:01 UTC
1 parent 13b2785
Raw File
emconfigure
#!/usr/bin/env python2

'''
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
'''

import os, sys
from tools import shared
from subprocess import CalledProcessError

try:
	shared.Building.configure(sys.argv[1:])
except CalledProcessError, e:
	sys.exit(e.returncode)

back to top