diff options
author | Josiah Frentsos <jfrent@tilde.team> | 2023-09-15 13:18:26 -0400 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2023-09-25 09:49:35 +0200 |
commit | d023bdaa6b493686f7e9be7ac200ee4ac37d351f (patch) | |
tree | a24ff0d45f30b683199c6dc5e2dd9650277ab9b0 | |
parent | c5aca682a20d8cf55c345b7e07be51230693fd84 (diff) | |
download | roux-d023bdaa6b493686f7e9be7ac200ee4ac37d351f.tar.gz |
Fix architecture detection on OpenBSD/arm64
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 0dbe5f7..3266c76 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ config.h: ;; \ *) \ case `uname -m` in \ - *aarch64*) \ + *aarch64*|*arm64*) \ echo "#define Deftgt T_arm64"; \ ;; \ *riscv64*) \ |