8000 bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads by hoodmane · Pull Request #32209 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-47176: Interrupt handling for wasm32-emscripten builds without pthreads #32209

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 23 commits into from
Apr 3, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update configure.ac
Co-authored-by: Christian Heimes <christian@python.org>
  • Loading branch information
hoodmane and tiran authored Apr 2, 2022
commit 0d18561e8b94530d26438cb49729f5dec965f793
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4148,7 +4148,8 @@ PLATFORM_OBJS=

AS_CASE([$ac_sys_system],
[Emscripten], [
AS_VAR_APPEND([PLATFORM_OBJS], [Python/emscripten_signal.o])
AS_VAR_APPEND([PLATFORM_OBJS], [' Python/emscripten_signal.o'])
AS_VAR_APPEND([PLATFORM_HEADERS], [' $(srcdir)/Include/internal/pycore_emscripten_signal.h'])
],
)
AC_SUBST([PLATFORM_HEADERS])
Expand Down
0