Buckets:
| #!/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. | |
| """Helper script for running make. | |
| This script runs make with correct environment | |
| variables to use emcc and so forth. Usage: | |
| emmake make [FLAGS] | |
| Note that if you ran configure with emconfigure, then | |
| the environment variables have already been detected | |
| and set. This script is useful if you have no configure | |
| step, and your Makefile uses the environment vars | |
| directly. | |
| The difference between this and emconfigure is that | |
| emconfigure runs compilation into native code, so | |
| that configure tests pass. emmake uses Emscripten to | |
| generate JavaScript. | |
| """ | |
| import os | |
| import shlex | |
| import shutil | |
| import sys | |
| from tools import building, utils | |
| # | |
| # Main run() function | |
| # | |
| def run(): | |
| if len(sys.argv) < 2 or sys.argv[1] in {'--version', '--help'}: | |
| print('''\ | |
| emmake is a helper for make, setting various environment | |
| variables so that emcc etc. are used. Typical usage: | |
| emmake make [FLAGS] | |
| (but you can run any command instead of make)''', file=sys.stderr) | |
| return 1 | |
| args = sys.argv[1:] | |
| env = building.get_building_env() | |
| # On Windows prefer building with mingw32-make instead of make, if it exists. | |
| if utils.WINDOWS: | |
| if args[0] == 'make': | |
| mingw32_make = shutil.which('mingw32-make') | |
| if mingw32_make: | |
| args[0] = mingw32_make | |
| # On Windows, run the execution through shell to get PATH expansion and | |
| # executable extension lookup, e.g. 'make' will match with | |
| # 'make.bat' in PATH. | |
| print(f'emmake: "{shlex.join(args)}" in "{os.getcwd()}"', file=sys.stderr) | |
| if utils.WINDOWS: | |
| return utils.run_process(args, check=False, shell=True, env=env).returncode | |
| else: | |
| os.environ.update(env) | |
| utils.exec(args) | |
| if __name__ == '__main__': | |
| sys.exit(run()) | |
Xet Storage Details
- Size:
- 1.98 kB
- Xet hash:
- 7bd49e2f49dc8ca40f0089719831c56431129122721f0cb90e70bfba3920f43d
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.