mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
test: clarify that self_exe_symlink fails on NetBSD due to bad F_GETPATH
closes https://codeberg.org/ziglang/zig/issues/30841
This commit is contained in:
@@ -9,8 +9,8 @@ pub fn build(b: *std.Build) void {
|
||||
const optimize: std.builtin.OptimizeMode = .Debug;
|
||||
const target = b.graph.host;
|
||||
|
||||
if (target.result.os.tag == .netbsd) return; // https://codeberg.org/ziglang/zig/issues/30841
|
||||
if (target.result.os.tag == .openbsd) return; // realpath not supported
|
||||
if (target.result.os.tag == .netbsd) return; // F_GETPATH not reliable
|
||||
if (target.result.os.tag == .openbsd) return; // F_GETPATH not supported
|
||||
|
||||
const main = b.addExecutable(.{
|
||||
.name = "main",
|
||||
|
||||
Reference in New Issue
Block a user