1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Merge pull request #91 from setrofim/master

Some minor fixes for ABI resolution.
This commit is contained in:
Sebastian Goscik 2016-02-02 09:41:08 +00:00
commit 14a1bc8a5d
2 changed files with 1 additions and 2 deletions

View File

@ -29,7 +29,6 @@ class GenericDevice(LinuxDevice):
"""
abi = 'armeabi'
has_gpu = True
parameters = [

View File

@ -47,7 +47,7 @@ from dateutil import tz
# ABI --> architectures list
ABI_MAP = {
'armeabi': ['armeabi', 'armv7', 'armv7l', 'armv7el', 'armv7lh'],
'arm64': ['arm64', 'armv8', 'arm64-v8a'],
'arm64': ['arm64', 'armv8', 'arm64-v8a', 'aarch64'],
}