From b665f716f3d35b4ae1505fa4b95bea42da031785 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Fri, 31 Jul 2026 23:06:09 +0200 Subject: [PATCH] test: partially disable glibc_compat on loongarch https://github.com/Vexu/arocc/issues/1096 --- test/standalone/glibc_compat/build.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/standalone/glibc_compat/build.zig b/test/standalone/glibc_compat/build.zig index 2a171c2dddab4c36fbee25c08eb5465e1b218cab..69568d72d9c1fd1b190aa482a0e1749feb7fa886 100644 --- a/test/standalone/glibc_compat/build.zig +++ b/test/standalone/glibc_compat/build.zig @@ -103,6 +103,8 @@ pub fn build(b: *std.Build) void { .{ .arch_os_abi = t }, ) catch unreachable); + if (target.result.cpu.arch.isLoongArch()) continue; // https://github.com/Vexu/arocc/issues/1096 + const glibc_ver = target.result.os.version_range.linux.glibc; // only build test if glibc version supports the architecture -- 2.54.0