https://github.com/kripken/emscripten
Raw File
Tip revision: b9ea40ea8b2ae63f71e52084e6ef89ab7f61c3df authored by Alon Zakai on 12 September 2014, 20:20:06 UTC
Merge branch 'monotonicclock' of https://github.com/NWilson/emscripten into incoming
Tip revision: b9ea40e
emscons
#!/usr/bin/env python2

'''
Wrapping the scons invocation, EMSCRIPTEN_TOOL_PATH is set in the process
environment, and can be used to locate the emscripten SCons Tool.
Example:
# Load emscripten Tool
my_env = Environment(tools=['emscripten'], toolpath=[os.environ['EMSCRIPTEN_TOOL_PATH']])
'''

import os, subprocess, sys
from tools import shared

tool_path = os.path.join(shared.path_from_root('tools'), 'scons', 'site_scons', 'site_tools', 'emscripten')

env = os.environ.copy()
env[ 'EMSCRIPTEN_TOOL_PATH' ] = tool_path

exit(subprocess.call(sys.argv[1:], env=env))

back to top