diff options
author | Christian Heimes <christian@python.org> | 2022-06-06 17:24:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-06 17:24:11 (GMT) |
commit | 22fed605e096eb74f3aa33f6d25aee76fdc2a3fa (patch) | |
tree | cd15eb66416ec5aa0ad33e48b0c76f98bb811b45 /Tools | |
parent | 56b5daf15970be449d44e91f08db84c698ac5506 (diff) | |
download | cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.zip cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.tar.gz cpython-22fed605e096eb74f3aa33f6d25aee76fdc2a3fa.tar.bz2 |
gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)
WASI does not have the ``chmod(2)`` syscall yet.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/wasm/config.site-wasm32-wasi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tools/wasm/config.site-wasm32-wasi b/Tools/wasm/config.site-wasm32-wasi index a6fcbed..f151b7b 100644 --- a/Tools/wasm/config.site-wasm32-wasi +++ b/Tools/wasm/config.site-wasm32-wasi @@ -35,6 +35,11 @@ ac_cv_func_fdopendir=no # WASIX stubs we don't want to use. ac_cv_func_kill=no +# WASI SDK 15.0 does not have chmod. +# Ignore WASIX stubs for now. +ac_cv_func_chmod=no +ac_cv_func_fchmod=no + # WASI sockets are limited to operations on given socket fd and inet sockets. # Disable AF_UNIX and AF_PACKET support, see socketmodule.h. ac_cv_header_sys_un_h=no |