Skip to content

Commit

Permalink
Fix Makefile for Apple Silicon-based Macs
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 <turner@uber.com>
  • Loading branch information
Ryan Turner committed Mar 29, 2024
1 parent 04f9983 commit 1158d15
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 1158d15

Please sign in to comment.