https://github.com/kripken/emscripten
Raw File
Tip revision: 45c18715157d3e20500fb0eab57e8f44e27052cb authored by Alon Zakai on 13 October 2015, 18:25:07 UTC
1.34.12
Tip revision: 45c1871
emcmake
#!/usr/bin/env python2

import os, subprocess, sys
from tools import shared

configure_path = shared.path_from_root('emconfigure')

exit(subprocess.call([shared.PYTHON, configure_path] + sys.argv[1:]))
back to top