diff options
author | Christian Heimes <christian@python.org> | 2022-03-22 17:42:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 17:42:09 (GMT) |
commit | 4aea656d62860e78cd8384f2de375f0d4f1db579 (patch) | |
tree | fb22ac0872243fd981f091ebda38c646bc779305 /Tools/wasm | |
parent | 9b889b5bda32c2610f98114d94750ba5f3260b58 (diff) | |
download | cpython-4aea656d62860e78cd8384f2de375f0d4f1db579.zip cpython-4aea656d62860e78cd8384f2de375f0d4f1db579.tar.gz cpython-4aea656d62860e78cd8384f2de375f0d4f1db579.tar.bz2 |
bpo-32033: Finalize WASI configure options (GH-32053)
Diffstat (limited to 'Tools/wasm')
-rw-r--r-- | Tools/wasm/config.site-wasm32-wasi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/wasm/config.site-wasm32-wasi b/Tools/wasm/config.site-wasm32-wasi index be26c46..255e99c 100644 --- a/Tools/wasm/config.site-wasm32-wasi +++ b/Tools/wasm/config.site-wasm32-wasi @@ -1,8 +1,6 @@ # config.site override for cross compiling to wasm32-wasi platform # # Written by Christian Heimes <christian@python.org> -# Partly based on pyodide's pyconfig.undefs.h file. - # cannot be detected in cross builds ac_cv_buggy_getaddrinfo=no @@ -14,4 +12,8 @@ ac_cv_file__dev_ptc=no # dummy readelf, WASI build does not need readelf. ac_cv_prog_ac_ct_READELF=true +# get/setrlimit are not supported +ac_cv_header_sys_resource_h=no + +# undefined symbols / unsupported features ac_cv_func_eventfd=no |