Commit d98e39fa68

Isaac Freund <ifreund@ifreund.xyz>
2021-05-15 16:59:29
stage2: make failure to find native libc verbose
1 parent 7a4b53f
Changed files (1)
src/Compilation.zig
@@ -2895,7 +2895,7 @@ fn detectLibCIncludeDirs(
 
     if (is_native_abi) {
         const libc = try arena.create(LibCInstallation);
-        libc.* = try LibCInstallation.findNative(.{ .allocator = arena });
+        libc.* = try LibCInstallation.findNative(.{ .allocator = arena, .verbose = true });
         return detectLibCFromLibCInstallation(arena, target, libc);
     }