Skip to content

Commit

Permalink
Modify configure.py to recognize 'aarch64' for 64-Bit Raspberry Pi OS (
Browse files Browse the repository at this point in the history
  • Loading branch information
HeatfanJohn authored Aug 3, 2021
1 parent f30df43 commit 9056e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def is_linux():


def is_raspi_arm():
return os.uname()[4] == "armv7l"
return os.uname()[4] == "armv7l" or os.uname()[4] == "aarch64"


def is_linux_ppc64le():
Expand Down

0 comments on commit 9056e91

Please sign in to comment.