8000 [3.13] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (GH-120173) by miss-islington · Pull Request #120199 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.13] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED 8000 (GH-120173) #120199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (
…GH-120173)

Fix Emscripten/WASI pattern in case statement for LDSHARED
(cherry picked from commit 47816f4)

Co-authored-by: Michael Allwright <contact@allwright.io>
  • Loading branch information
allsey87 authored and miss-islington committed Jun 7, 2024
commit ddecf992524c424492fbfdb42d6955b3d5d80adf
2 changes: 1 addition & 1 deletion configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3417,7 +3417,7 @@ then
LDCXXSHARED='$(CXX) -dynamiclib -F . -framework $(PYTHONFRAMEWORK)'
BLDSHARED="$LDSHARED"
;;
Emscripten|WASI)
Emscripten*|WASI*)
LDSHARED='$(CC) -shared'
LDCXXSHARED='$(CXX) -shared';;
Linux*|GNU*|QNX*|VxWorks*|Haiku*)
Expand Down
Loading
0