From 9056e9167018bbf04e2949a7dc0dfcda0377dd08 Mon Sep 17 00:00:00 2001 From: John P Masseria Date: Tue, 3 Aug 2021 17:25:20 -0400 Subject: [PATCH] Modify configure.py to recognize 'aarch64' for 64-Bit Raspberry Pi OS (#2540) --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index 0ceb902614..5126f6d95b 100644 --- a/configure.py +++ b/configure.py @@ -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():