diff options
author | Hood Chatham <roberthoodchatham@gmail.com> | 2024-11-16 01:46:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-16 01:46:39 (GMT) |
commit | 2313f8421080ceb3343c6f5d291279adea85e073 (patch) | |
tree | bc244f044e6b13ae67687866f80a6d862869f603 | |
parent | 544b001b233ac57dfce17587ffbd10a70abe3ab0 (diff) | |
download | cpython-2313f8421080ceb3343c6f5d291279adea85e073.zip cpython-2313f8421080ceb3343c6f5d291279adea85e073.tar.gz cpython-2313f8421080ceb3343c6f5d291279adea85e073.tar.bz2 |
GH-126748: amend configure.rst description for the 'build_wasm' make target (#126687)
Clarified the documentation around how the build_wasm target is selected.
-rw-r--r-- | Doc/using/configure.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 6fd623c..e7733a6 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -1088,7 +1088,8 @@ CPython project) this is usually the ``all`` target. The all`` will build. The three choices are: * ``profile-opt`` (configured with ``--enable-optimizations``) -* ``build_wasm`` (configured with ``--with-emscripten-target``) +* ``build_wasm`` (chosen if the host platform matches ``wasm32-wasi*`` or + ``wasm32-emscripten``) * ``build_all`` (configured without explicitly using either of the others) Depending on the most recent source file changes, Make will rebuild |