Skip to content

Commit

Permalink
M1 should be arm64 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
n0vad3v authored Jul 29, 2023
1 parent 9250d6f commit 5dba6bb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ else
endif

ifeq ($(shell uname -m),aarch64)
ARCH=arm64
ARCH=arm64
else ifeq ($(shell uname -m),arm64)
ARCH=arm64
else
ARCH=amd64
ARCH=amd64
endif

default:
Expand Down

0 comments on commit 5dba6bb

Please sign in to comment.