We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec275e commit a977394Copy full SHA for a977394
src/target.zig
@@ -236,7 +236,7 @@ pub fn hasLldSupport(ofmt: std.Target.ObjectFormat) bool {
236
pub fn selfHostedBackendIsAsRobustAsLlvm(target: *const std.Target) bool {
237
if (target.cpu.arch.isSpirV()) return true;
238
if (target.cpu.arch == .x86_64 and target.ptrBitWidth() == 64) {
239
- if (target.os.tag == .netbsd) {
+ if (target.os.tag == .netbsd or target.os.tag == .openbsd) {
240
// Self-hosted linker needs work: https://github.com/ziglang/zig/issues/24341
241
return false;
242
}
0 commit comments