Skip to content

Commit

Permalink
Fix Makefile for Apple Silicon-based Macs (#275)
Browse files Browse the repository at this point in the history
Output of `uname -m` on my M2 Mac
```
arm64
```

Signed-off-by: Ryan Turner <[email protected]>
  • Loading branch information
rturner3 authored Apr 1, 2024
1 parent 374b58f commit 2f21f77
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ ifeq ($(arch1),x86_64)
arch2=amd64
else ifeq ($(arch1),aarch64)
arch2=arm64
else ifeq ($(arch1),arm64)
arch2=arm64
else
$(error unsupported ARCH: $(arch1))
endif
Expand Down

0 comments on commit 2f21f77

Please sign in to comment.