diff options
| author | Jon Lipstate <jon@lipstate.com> | 2025-08-29 12:41:38 -0700 |
|---|---|---|
| committer | Jon Lipstate <jon@lipstate.com> | 2025-08-29 12:41:38 -0700 |
| commit | 231ce2da59cd93b4e8d8a90daca2d2111fc3ecf8 (patch) | |
| tree | 53a7fd84f67213318f659f02b4d03d6f7acdac45 /src/main.cpp | |
| parent | f926c1861f5346d23b1b60f6b5970f598d3584b3 (diff) | |
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 db4dee080..c4646bc9f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3617,6 +3617,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; |