Closes #20355: Enables dynamic linking for .os_tag == .other again

This commit is contained in:
Felix "xq" Queißner 2024-06-21 00:06:27 +02:00 committed by Andrew Kelley
parent 0d12caee29
commit 451550e86a

View File

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