diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-09-18 22:01:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-18 22:01:14 +0100 |
| commit | 4d2854f5618c8e6a09bc2ec7bf969eccb01f93c2 (patch) | |
| tree | ece1e00dd4e8f7bbb1098f4cffbed5b232e7f6e2 /src/main.cpp | |
| parent | 9cf69576ab8cb220af5802a04a0aa53dc92046a5 (diff) | |
| parent | 57bc45ae30736a891e4b65c7047a091e53cf60e3 (diff) | |
Merge pull request #5632 from kalsprite/x386
windows i386 support
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index bbaf6f23f..be0ea8b82 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3629,6 +3629,11 @@ int main(int arg_count, char const **arg_ptr) { // print_usage_line(0, "%.*s 32-bit is not yet supported for this platform", LIT(args[0])); // return 1; // } + + // Warn about Windows i386 thread-local storage limitations + 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. bool print_microarch_list = true; |