diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-17 10:36:42 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-17 10:36:42 +0000 |
| commit | 32f459e152144f8f44f5bd9c8892b30996da011c (patch) | |
| tree | e253abadca9efc392f5e38d19451b9b58e3d2081 /src/build_settings.cpp | |
| parent | e0e38afe603b14c23b9931a89b4244470907a8ff (diff) | |
Change target triple of `freestanding_amd64_win64` to `x86_64-pc-windows-msvc` to fix a bug with LLVM's code generation
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp index 757df95f7..7160f3721 100644 --- a/src/build_settings.cpp +++ b/src/build_settings.cpp @@ -835,7 +835,7 @@ gb_global TargetMetrics target_freestanding_amd64_win64 = { TargetOs_freestanding, TargetArch_amd64, 8, 8, AMD64_MAX_ALIGNMENT, 32, - str_lit("x86_64-pc-none-msvc"), + str_lit("x86_64-pc-windows-msvc"), TargetABI_Win64, }; |