| author | |
| committer | |
| log | 23f46bcd4d1d6cca5a25ed9e7b1222b1283de7af |
| tree | a31d72b8b82d4836ada12f53c02fcda2a6233114 |
| parent | af27e8d06fe151cf689e3a6e33b660e3cd4ac8d0 |
| signature |
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.1 files changed, 0 insertions(+), 1 deletions(-)
lib/std/Build.zig-1| ... | @@ -2707,5 +2707,4 @@ pub fn systemIntegrationOption( | ... | @@ -2707,5 +2707,4 @@ pub fn systemIntegrationOption( |
| 2707 | test { | 2707 | test { |
| 2708 | _ = Cache; | 2708 | _ = Cache; |
| 2709 | _ = Step; | 2709 | _ = Step; |
| 2710 | _ = &findProgram; | ||
| 2711 | } | 2710 | } |