Lines Matching defs:build
4 $ ./Tools/wasm/wasm_builder.py emscripten-browser build repl
5 $ ./Tools/wasm/wasm_builder.py emscripten-node-dl build test
6 $ ./Tools/wasm/wasm_builder.py wasi build test
8 Primary build targets are "emscripten-node-dl" (NodeJS, dynamic linking),
18 The 'build' Python interpreter must be rebuilt every time Python's byte code
21 ./Tools/wasm/wasm_builder.py --clean build build
80 Debian/Ubuntu: sudo apt install build-essential git curl pkg-config zlib1g-dev
319 "--env PYTHONPATH=/{relbuilddir}/build/lib.wasi-wasm32-{version}:/Lib "
336 build = sysconfig.get_config_var("BUILD_GNU_TYPE")
441 """Is this a browser build?"""
446 """Path to build directory"""
471 cmd.append(f"--build={Host.build.value}")
487 if self.host != Host.build:
488 cmd.append(f"--with-build-python={BUILD.python_cmd}")
562 """Run make (defaults to build all)"""
585 """Run WASM webserver and open build in browser"""
616 """Clean build directory"""
624 """Pre-build emscripten ports."""
640 # Trigger PIC build.
645 # Trigger multi-threaded build.
648 # Pre-build libbz2, libsqlite3, libz, and some system libs.
652 ["build", "bzip2", "sqlite3-mt" if self.pthreads else "sqlite3", "zlib"]
671 # native build (build Python)
673 "build",
675 host=Host.build,
723 # Emscripten build with both pthreads and dynamic linking is crashing.
767 help="Clean build directories first",
804 build="auto build (build 'build' Python, emports, configure, compile)",
812 cleanall="remove all build directories",
813 emports="build Emscripten port with embuilder (only Emscripten)",
819 help=f"operation (default: build)\n\n{ops_help}",
821 default="build",
842 if args.ops == "build":
843 args.ops = ["build"]
858 # auto-build
859 if "build" in args.ops:
860 # check and create build Python
862 logger.info("Auto-building 'build' Python.")
870 # build Emscripten ports with embuilder
876 if op == "build":