1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-04-05 17:30:03 +01:00

Target: Ported supported_abi property from WA2

This commit is contained in:
Marc Bonnici 2017-07-14 17:41:16 +01:00
parent 68be9d8acc
commit 98fb2e2306

View File

@ -101,6 +101,10 @@ class Target(object):
def abi(self): # pylint: disable=no-self-use def abi(self): # pylint: disable=no-self-use
return None return None
@property
def supported_abi(self):
return [self.abi]
@property @property
@memoized @memoized
def cpuinfo(self): def cpuinfo(self):
@ -828,6 +832,30 @@ class AndroidTarget(Target):
def abi(self): def abi(self):
return self.getprop()['ro.product.cpu.abi'].split('-')[0] return self.getprop()['ro.product.cpu.abi'].split('-')[0]
@property
@memoized
def supported_abi(self):
props = self.getprop()
result = [props['ro.product.cpu.abi']]
if 'ro.product.cpu.abi2' in props:
result.append(props['ro.product.cpu.abi2'])
if 'ro.product.cpu.abilist' in props:
for abi in props['ro.product.cpu.abilist'].split(','):
if abi not in result:
result.append(abi)
mapped_result = []
for supported_abi in result:
for abi, architectures in ABI_MAP.iteritems():
found = False
if supported_abi in architectures and abi not in mapped_result:
mapped_result.append(abi)
found = True
break
if not found and supported_abi not in mapped_result:
mapped_result.append(supported_abi)
return mapped_result
@property @property
@memoized @memoized
def os_version(self): def os_version(self):