Sha256: 17d662bcad261699318c4ef45dfb20ea737638897d90871193ca8969f8be13be
Contents?: true
Size: 620 Bytes
Versions: 8
Compression:
Stored size: 620 Bytes
Contents
#!/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)
Version data entries
8 entries across 8 versions & 1 rubygems