We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents afe4fcd + f9af903 commit acc8decCopy full SHA for acc8dec
easybuild/tools/systemtools.py
@@ -320,7 +320,7 @@ def get_cpu_architecture():
320
:return: a value from the CPU_ARCHITECTURES list
321
"""
322
aarch32_regex = re.compile("arm.*")
323
- aarch64_regex = re.compile("aarch64.*")
+ aarch64_regex = re.compile("(aarch64|arm64).*")
324
power_regex = re.compile("ppc64.*")
325
riscv32_regex = re.compile("riscv32.*")
326
riscv64_regex = re.compile("riscv64.*")
test/framework/systemtools.py
@@ -566,6 +566,7 @@ def test_cpu_architecture(self):
566
machine_names = {
567
'aarch64': AARCH64,
568
'aarch64_be': AARCH64,
569
+ 'arm64': AARCH64,
570
'armv7l': AARCH32,
571
'ppc64': POWER,
572
'ppc64le': POWER,
0 commit comments