stage2: make failure to find native libc verbose

This commit is contained in:
Isaac Freund 2021-05-15 16:59:29 +02:00
parent 7a4b53fdee
commit d98e39fa68

View File

@ -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);
}