summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHood Chatham <roberthoodchatham@gmail.com>2024-12-05 00:44:50 (GMT)
committerGitHub <noreply@github.com>2024-12-05 00:44:50 (GMT)
commit87faf0a9c4aa7f8eb5b6b6c8f6e8f5f99b1e3d9b (patch)
treeae99ddc0a7c2096bd2ba44e4e41e1b1b8e89323f
parent43634fc1fcc88b35171aa79258f767ba6477f764 (diff)
downloadcpython-87faf0a9c4aa7f8eb5b6b6c8f6e8f5f99b1e3d9b.zip
cpython-87faf0a9c4aa7f8eb5b6b6c8f6e8f5f99b1e3d9b.tar.gz
cpython-87faf0a9c4aa7f8eb5b6b6c8f6e8f5f99b1e3d9b.tar.bz2
gh-127503: Emscripten make Python.sh function as proper Python CLI (#127506)
Modifies the python.sh script to work on macOS, and adapt to recent emscripten changes.
-rw-r--r--Tools/wasm/emscripten/__main__.py21
-rw-r--r--Tools/wasm/emscripten/node_entry.mjs43
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
4 files changed, 51 insertions, 17 deletions
diff --git a/Tools/wasm/emscripten/__main__.py b/Tools/wasm/emscripten/__main__.py
index 9ce8dd6..c998ed7 100644
--- a/Tools/wasm/emscripten/__main__.py
+++ b/Tools/wasm/emscripten/__main__.py
@@ -218,9 +218,26 @@ def configure_emscripten_python(context, working_dir):
f"""\
#!/bin/sh
+ # Macs come with FreeBSD coreutils which doesn't have the -s option
+ # so feature detect and work around it.
+ if which grealpath > /dev/null; then
+ # It has brew installed gnu core utils, use that
+ REALPATH="grealpath -s"
+ elif which realpath > /dev/null && realpath --version 2&>1 | grep GNU > /dev/null; then
+ # realpath points to GNU realpath so use it.
+ REALPATH="realpath -s"
+ else
+ # Shim for macs without GNU coreutils
+ abs_path () {{
+ echo "$(cd "$(dirname "$1")" || exit; pwd)/$(basename "$1")"
+ }}
+ REALPATH=abs_path
+ fi
+
# We compute our own path, not following symlinks and pass it in so that
# node_entry.mjs can set sys.executable correctly.
- exec {host_runner} {node_entry} "$(realpath -s $0)" "$@"
+ # Intentionally allow word splitting on NODEFLAGS.
+ exec {host_runner} $NODEFLAGS {node_entry} --this-program="$($REALPATH "$0")" "$@"
"""
)
)
@@ -233,7 +250,7 @@ def configure_emscripten_python(context, working_dir):
def make_emscripten_python(context, working_dir):
"""Run `make` for the emscripten/host build."""
call(
- ["make", "--jobs", str(cpu_count()), "commoninstall"],
+ ["make", "--jobs", str(cpu_count()), "all"],
env=updated_env(),
quiet=context.quiet,
)
diff --git a/Tools/wasm/emscripten/node_entry.mjs b/Tools/wasm/emscripten/node_entry.mjs
index cb1c6ff..40ab151 100644
--- a/Tools/wasm/emscripten/node_entry.mjs
+++ b/Tools/wasm/emscripten/node_entry.mjs
@@ -1,30 +1,47 @@
import EmscriptenModule from "./python.mjs";
-import { dirname } from 'node:path';
-import { fileURLToPath } from 'node:url';
+import fs from "node:fs";
if (process?.versions?.node) {
const nodeVersion = Number(process.versions.node.split(".", 1)[0]);
if (nodeVersion < 18) {
- process.stderr.write(
- `Node version must be >= 18, got version ${process.version}\n`,
- );
- process.exit(1);
+ process.stderr.write(
+ `Node version must be >= 18, got version ${process.version}\n`,
+ );
+ process.exit(1);
}
}
+function rootDirsToMount(Module) {
+ return fs
+ .readdirSync("/")
+ .filter((dir) => !["dev", "lib", "proc"].includes(dir))
+ .map((dir) => "/" + dir);
+}
+
+function mountDirectories(Module) {
+ for (const dir of rootDirsToMount(Module)) {
+ Module.FS.mkdirTree(dir);
+ Module.FS.mount(Module.FS.filesystems.NODEFS, { root: dir }, dir);
+ }
+}
+
+const thisProgram = "--this-program=";
+const thisProgramIndex = process.argv.findIndex((x) =>
+ x.startsWith(thisProgram),
+);
+
const settings = {
preRun(Module) {
- const __dirname = dirname(fileURLToPath(import.meta.url));
- Module.FS.mkdirTree("/lib/");
- Module.FS.mount(Module.FS.filesystems.NODEFS, { root: __dirname + "/lib/" }, "/lib/");
+ mountDirectories(Module);
+ Module.FS.chdir(process.cwd());
+ Object.assign(Module.ENV, process.env);
},
- // The first three arguments are: "node", path to this file, path to
- // python.sh. After that come the arguments the user passed to python.sh.
- arguments: process.argv.slice(3),
// Ensure that sys.executable, sys._base_executable, etc point to python.sh
// not to this file. To properly handle symlinks, python.sh needs to compute
// its own path.
- thisProgram: process.argv[2],
+ thisProgram: process.argv[thisProgramIndex],
+ // After python.sh come the arguments thatthe user passed to python.sh.
+ arguments: process.argv.slice(thisProgramIndex + 1),
};
await EmscriptenModule(settings);
diff --git a/configure b/configure
index c679077..2fa473b 100755
--- a/configure
+++ b/configure
@@ -9434,7 +9434,7 @@ fi
as_fn_append LDFLAGS_NODIST " -sWASM_BIGINT"
as_fn_append LDFLAGS_NODIST " -sFORCE_FILESYSTEM -lidbfs.js -lnodefs.js -lproxyfs.js -lworkerfs.js"
- as_fn_append LDFLAGS_NODIST " -sEXPORTED_RUNTIME_METHODS=FS,callMain"
+ as_fn_append LDFLAGS_NODIST " -sEXPORTED_RUNTIME_METHODS=FS,callMain,ENV"
as_fn_append LDFLAGS_NODIST " -sEXPORTED_FUNCTIONS=_main,_Py_Version"
as_fn_append LDFLAGS_NODIST " -sSTACK_SIZE=5MB"
diff --git a/configure.ac b/configure.ac
index 9648e43..8ca8e0f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2332,7 +2332,7 @@ AS_CASE([$ac_sys_system],
dnl Include file system support
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sFORCE_FILESYSTEM -lidbfs.js -lnodefs.js -lproxyfs.js -lworkerfs.js"])
- AS_VAR_APPEND([LDFLAGS_NODIST], [" -sEXPORTED_RUNTIME_METHODS=FS,callMain"])
+ AS_VAR_APPEND([LDFLAGS_NODIST], [" -sEXPORTED_RUNTIME_METHODS=FS,callMain,ENV"])
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sEXPORTED_FUNCTIONS=_main,_Py_Version"])
AS_VAR_APPEND([LDFLAGS_NODIST], [" -sSTACK_SIZE=5MB"])