Skip to content

Commit 9664162

Browse files
authored
Merge pull request #8413 from roc-lang/silence-warning
Remove the libc not found warning
2 parents 47e0f7f + f17b7c5 commit 9664162

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/cli/libc_finder.zig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,7 @@ test "libc detection integration test" {
310310
defer allocs.deinit();
311311

312312
const libc_info = findLibc(&allocs) catch |err| switch (err) {
313-
error.LibcNotFound => {
314-
std.log.warn("Libc not found on this system - this may be expected in some environments", .{});
315-
return;
316-
},
313+
error.LibcNotFound => return,
317314
else => return err,
318315
};
319316

0 commit comments

Comments
 (0)