aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Compilation.zig9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 58425197c1..625de58c63 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -3402,7 +3402,14 @@ fn detectLibCIncludeDirs(
// If zig can't build the libc for the target and we are targeting the
// native abi, fall back to using the system libc installation.
- if (is_native_abi) {
+ // On windows, instead of the native (mingw) abi, we want to check
+ // for the MSVC abi as a fallback.
+ const use_system_abi = if (std.Target.current.os.tag == .windows)
+ target.abi == .msvc
+ else
+ is_native_abi;
+
+ if (use_system_abi) {
const libc = try arena.create(LibCInstallation);
libc.* = try LibCInstallation.findNative(.{ .allocator = arena, .verbose = true });
return detectLibCFromLibCInstallation(arena, target, libc);