hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 43ff632b3fe95a18029987e6eaaba697423733a8
parent 9582c908639c2724dfe0837fe2491532a67efcbd
Author: Tobias Heider <me@tobhe.de>
Date:   Sat,  2 Dec 2023 19:16:01 +0100

OpenBSD: arm64 is called aarch64 in hare

Signed-off-by: Tobias Heider <me@tobhe.de>

Diffstat:
Mos/+openbsd/platform_environ.ha | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/os/+openbsd/platform_environ.ha b/os/+openbsd/platform_environ.ha @@ -83,6 +83,8 @@ export fn machine() const str = { switch (mach) { case "amd64" => return "x86_64"; + case "arm64" => + return "aarch64"; case => return mach; };