From a84b1a3dd8f4aec3095e5c5420b4938c38647a15 Mon Sep 17 00:00:00 2001 From: torque Date: Sat, 14 Sep 2024 17:40:31 -0700 Subject: [PATCH] build with zig master also `aarch64_32` has ceased to exist. Actually, I'm not sure it should have been used on this switch prong anyway. --- build.zig | 2 -- 1 file changed, 2 deletions(-) diff --git a/build.zig b/build.zig index 63d7aa2..f089b25 100644 --- a/build.zig +++ b/build.zig @@ -319,7 +319,6 @@ pub fn build(b: *std.Build) !void { const conf_header = upstream.path(switch (tinfo.cpu.arch) { .aarch64, .aarch64_be, - .aarch64_32, => source_header_prefix ++ "arch/aarch64/opensslconf.h", .x86 => source_header_prefix ++ "arch/i386/opensslconf.h", .riscv64 => source_header_prefix ++ "arch/riscv64/opensslconf.h", @@ -356,7 +355,6 @@ pub fn build(b: *std.Build) !void { switch (tinfo.cpu.arch) { .aarch64, .aarch64_be, - .aarch64_32, => libressl_libs.libcrypto.addIncludePath( upstream.path(libcrypto_src_prefix ++ "bn/arch/aarch64"), ),