blob: d10efc5305376f5aeffbc37175f44009fadabaff [file] [log] [blame] [edit]
#!/usr/bin/env python3
# Copyright 2016 The Emscripten Authors. All rights reserved.
# Emscripten is available under two separate licenses, the MIT license and the
# University of Illinois/NCSA Open Source License. Both these licenses can be
# found in the LICENSE file.
import subprocess
import sys
from tools import shared
#
# Main run() function
#
def run():
configure_path = shared.path_from_root('emconfigure')
return subprocess.call([shared.PYTHON, configure_path] + sys.argv[1:])
if __name__ == '__main__':
sys.exit(run())