MCPcopy Index your code
hub / github.com/kivy/python-for-android / ArchARM

Class ArchARM

pythonforandroid/archs.py:235–245  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

233
234
235class ArchARM(Arch):
236 arch = "armeabi"
237 command_prefix = 'arm-linux-androideabi'
238
239 @property
240 def target(self):
241 target_data = self.command_prefix.split('-')
242 return '{triplet}{ndk_api}'.format(
243 triplet='-'.join(['armv7a', target_data[1], target_data[2]]),
244 ndk_api=self.ctx.ndk_api,
245 )
246
247
248class ArchARMv7_a(ArchARM):

Callers 2

__init__Method · 0.90
test_arch_armMethod · 0.90

Calls

no outgoing calls

Tested by 1

test_arch_armMethod · 0.72