Revision 1979e5ccd8b0637f087a547f157769ff02cb7b48 authored by Alon Zakai on 06 March 2013, 19:52:00 UTC, committed by Alon Zakai on 06 March 2013, 19:52:00 UTC
Remove test_Os now that emcc supports -Os.
2 parent s 29a6a88 + 51892b5
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

shared.Building.configure(sys.argv[1:])

back to top