From 23f46bcd4d1d6cca5a25ed9e7b1222b1283de7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 7 Jun 2026 18:30:16 +0200 Subject: [PATCH] Partially revert "add missing param to mem.concat call" This partially reverts commit af27e8d06fe151cf689e3a6e33b660e3cd4ac8d0. This broke two platforms: * s390x-linux: It caused the `loadBits and storeBits` test to be analyzed and run, and that test looks to me to be bogus on big endian. * x86_64-windows: `tryFindProgram` is not fallible, yet the Windows code uses `try`, so making it get analyzed exposed another compile error. Reverting the analysis of `findProgram` for now to unbreak master and a number of PRs, but we should still urgently fix both of these issues. --- lib/std/Build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/Build.zig b/lib/std/Build.zig index 3bae02122651ac6a9f19a671faf7ea928b014077..2261aa4c9241452fb2f5f54e4d41cb01de7d5ef0 100644 --- a/lib/std/Build.zig +++ b/lib/std/Build.zig @@ -2707,5 +2707,4 @@ pub fn systemIntegrationOption( test { _ = Cache; _ = Step; - _ = &findProgram; } -- 2.54.0