diff options
| author | LemonBoy <thatlemon@gmail.com> | 2021-05-04 18:52:53 +0200 |
|---|---|---|
| committer | LemonBoy <thatlemon@gmail.com> | 2021-05-04 18:52:53 +0200 |
| commit | afbcb6209dbe6812679324aab564884085b8cf44 (patch) | |
| tree | a540fa8c049e94c1e19adfd1e17a85c7e80ca2f6 /lib/std/os/bits/linux.zig | |
| parent | 4bf093f1a00e481d923452955ab9c394c30b8694 (diff) | |
| download | zig-afbcb6209dbe6812679324aab564884085b8cf44.tar.gz zig-afbcb6209dbe6812679324aab564884085b8cf44.zip | |
std: Initial bringup for Linux on Thumb2
There are some small problems here and there, mostly due to the pointers
having the lsb set and disrupting the fn alignment tests and the
`@FrameSize` implementation.
Diffstat (limited to 'lib/std/os/bits/linux.zig')
| -rw-r--r-- | lib/std/os/bits/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index 94da5cc99a..97cdbef782 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -18,7 +18,7 @@ pub usingnamespace switch (builtin.arch) { .i386 => @import("linux/i386.zig"), .x86_64 => @import("linux/x86_64.zig"), .aarch64 => @import("linux/arm64.zig"), - .arm => @import("linux/arm-eabi.zig"), + .arm, .thumb => @import("linux/arm-eabi.zig"), .riscv64 => @import("linux/riscv64.zig"), .sparcv9 => @import("linux/sparc64.zig"), .mips, .mipsel => @import("linux/mips.zig"), |
