mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
[3.12] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED… (#120204)
gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (#120173)
Fix Emscripten/WASI pattern in case statement for LDSHARED
(cherry picked from commit 47816f465e)
Co-authored-by: Michael Allwright <contact@allwright.io>
This commit is contained in:
parent
3730f60f39
commit
315611aac8
2 changed files with 2 additions and 2 deletions
2
configure
generated
vendored
2
configure
generated
vendored
|
|
@ -12789,7 +12789,7 @@ then
|
|||
BLDSHARED="$LDSHARED"
|
||||
fi
|
||||
;;
|
||||
Emscripten|WASI)
|
||||
Emscripten*|WASI*)
|
||||
LDSHARED='$(CC) -shared'
|
||||
LDCXXSHARED='$(CXX) -shared';;
|
||||
Linux*|GNU*|QNX*|VxWorks*|Haiku*)
|
||||
|
|
|
|||
|
|
@ -3356,7 +3356,7 @@ then
|
|||
BLDSHARED="$LDSHARED"
|
||||
fi
|
||||
;;
|
||||
Emscripten|WASI)
|
||||
Emscripten*|WASI*)
|
||||
LDSHARED='$(CC) -shared'
|
||||
LDCXXSHARED='$(CXX) -shared';;
|
||||
Linux*|GNU*|QNX*|VxWorks*|Haiku*)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue