[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:
Victor Stinner 2024-06-07 11:49:54 +02:00 committed by GitHub
parent 3730f60f39
commit 315611aac8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

2
configure generated vendored
View file

@ -12789,7 +12789,7 @@ then
BLDSHARED="$LDSHARED"
fi
;;
Emscripten|WASI)
Emscripten*|WASI*)
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared';;
Linux*|GNU*|QNX*|VxWorks*|Haiku*)

View file

@ -3356,7 +3356,7 @@ then
BLDSHARED="$LDSHARED"
fi
;;
Emscripten|WASI)
Emscripten*|WASI*)
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared';;
Linux*|GNU*|QNX*|VxWorks*|Haiku*)