diff options
| author | Jon Lipstate <jon@lipstate.com> | 2025-09-03 22:51:28 -0700 |
|---|---|---|
| committer | Jon Lipstate <jon@lipstate.com> | 2025-09-03 22:51:28 -0700 |
| commit | 57bc45ae30736a891e4b65c7047a091e53cf60e3 (patch) | |
| tree | 53a7fd84f67213318f659f02b4d03d6f7acdac45 /core/testing/signal_handler_libc.odin | |
| parent | e0c4c5336241cb3106910bec64369888b937132b (diff) | |
revert to working build
Diffstat (limited to 'core/testing/signal_handler_libc.odin')
| -rw-r--r-- | core/testing/signal_handler_libc.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/testing/signal_handler_libc.odin b/core/testing/signal_handler_libc.odin index 7c50fbb09..961f5c7ce 100644 --- a/core/testing/signal_handler_libc.odin +++ b/core/testing/signal_handler_libc.odin @@ -24,8 +24,8 @@ import "core:terminal/ansi" @(private="file") stop_test_passed: libc.sig_atomic_t @(private="file") stop_test_alert: libc.sig_atomic_t -when ODIN_ARCH == .i386 && ODIN_OS == .Windows && ODIN_NO_CRT { - // Thread-local storage doesn't work on Windows i386 without CRT +when ODIN_ARCH == .i386 && ODIN_OS == .Windows { + // Thread-local storage is problematic on Windows i386 @(private="file") local_test_index: libc.sig_atomic_t @(private="file") |