Revision 47c46fed9b6f4e28d2ec9c9b2c0fc19f4f8c8ff9 authored by Jukka Jylänki on 28 July 2014, 20:16:53 UTC, committed by Jukka Jylänki on 29 July 2014, 07:01:38 UTC
1 parent 97ad2b9
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