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 /src/main.cpp | |
| parent | e0c4c5336241cb3106910bec64369888b937132b (diff) | |
revert to working build
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 198706de2..c4646bc9f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3619,9 +3619,8 @@ int main(int arg_count, char const **arg_ptr) { // } // Warn about Windows i386 thread-local storage limitations - if (build_context.metrics.arch == TargetArch_i386 && build_context.metrics.os == TargetOs_windows && build_context.no_crt) { - gb_printf_err("Warning: Thread-local storage is not supported on Windows i386 with -no-crt.\n"); - gb_printf_err(" Multi-threaded code will not work correctly.\n"); + if (build_context.metrics.arch == TargetArch_i386 && build_context.metrics.os == TargetOs_windows) { + gb_printf_err("Warning: Thread-local storage is disabled on Windows i386.\n"); } // Check chosen microarchitecture. If not found or ?, print list. |