diff --git a/src/target.zig b/src/target.zig index dccc91382bd1c092a1f8170635c5e851536fce65..1a12d741ed74139a566025256cf6466adfab120e 100644 --- a/src/target.zig +++ b/src/target.zig @@ -8,7 +8,7 @@ pub const default_stack_protector_buffer_size = 4; pub fn cannotDynamicLink(target: std.Target) bool { return switch (target.os.tag) { - .freestanding, .other => true, + .freestanding => true, else => target.isSpirV(), }; }