mirror of https://github.com/python/cpython
gh-90473: Define HOSTRUNNER for WASI (GH-93606)
This commit is contained in:
parent
5442561c1a
commit
22df2e0322
|
@ -6688,6 +6688,8 @@ else
|
|||
|
||||
fi
|
||||
;; #(
|
||||
WASI/*) :
|
||||
HOSTRUNNER='wasmtime run --env PYTHONPATH=$$(realpath --relative-to $(abs_srcdir) $(abs_builddir))/$$(cat pybuilddir.txt) --mapdir /::$(srcdir) --' ;; #(
|
||||
*) :
|
||||
HOSTRUNNER=''
|
||||
;;
|
||||
|
|
|
@ -1424,6 +1424,10 @@ then
|
|||
HOSTRUNNER='node'
|
||||
])
|
||||
],
|
||||
dnl TODO: support other WASI runtimes
|
||||
dnl wasmtime starts the proces with "/" as CWD. For OOT builds add the
|
||||
dnl directory containing _sysconfigdata to PYTHONPATH.
|
||||
[WASI/*], [HOSTRUNNER='wasmtime run --env PYTHONPATH=$$(realpath --relative-to $(abs_srcdir) $(abs_builddir))/$$(cat pybuilddir.txt) --mapdir /::$(srcdir) --'],
|
||||
[HOSTRUNNER='']
|
||||
)
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue