From 92bc802033ec7c206ae3a10c94cc67d85c4b9104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Sun, 21 Jul 2024 22:55:12 +0200 Subject: [PATCH] std.os.linux: Also define MAP for armeb and thumbeb. --- lib/std/os/linux.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig index 0b318ae913..579f7f4f5a 100644 --- a/lib/std/os/linux.zig +++ b/lib/std/os/linux.zig @@ -142,7 +142,7 @@ pub const MAP = switch (native_arch) { UNINITIALIZED: bool = false, _: u5 = 0, }, - .aarch64, .aarch64_be, .arm, .thumb => packed struct(u32) { + .aarch64, .aarch64_be, .arm, .armeb, .thumb, .thumbeb => packed struct(u32) { TYPE: MAP_TYPE, FIXED: bool = false, ANONYMOUS: bool = false,