Fixed NameError: name 'ARCH' is not defined on Raspberry Pi (#12421) (#12512)

(cherry picked from commit fe4e875586)
This commit is contained in:
Adrian Boguszewski
2022-08-12 09:43:25 +01:00
committed by GitHub
parent e628fae196
commit d8d5dfb34a

View File

@@ -34,7 +34,7 @@ if machine == "x86_64" or machine == "AMD64":
ARCH = "intel64"
elif machine == "X86":
ARCH = "ia32"
elif machine == "arm":
elif machine == "arm" or machine == "armv7l":
ARCH = "arm"
elif machine == "aarch64":
ARCH = "arm64"