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

Class ArchAarch_64

pythonforandroid/archs.py:283–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

281
282
283class ArchAarch_64(Arch):
284 arch = 'arm64-v8a'
285 command_prefix = 'aarch64-linux-android'
286 arch_cflags = [
287 '-march=armv8-a',
288 '-fPIC'
289 # '-I' + join(dirname(__file__), 'includes', 'arm64-v8a'),
290 ]
291
292 # Note: This `EXTRA_CFLAGS` below should target the commented `include`
293 # above in `arch_cflags`. The original lines were added during the Sdl2's
294 # bootstrap creation, and modified/commented during the migration to the
295 # NDK r19 build system, because it seems that we don't need it anymore,
296 # do we need them?
297 # def get_env(self, with_flags_in_cc=True):
298 # env = super().get_env(with_flags_in_cc)
299 # env['EXTRA_CFLAGS'] = self.arch_cflags[-1]
300 # return env

Callers 12

__init__Method · 0.90
test_arch_aarch_64Method · 0.90
test_should_buildMethod · 0.90
test_install_stl_libMethod · 0.90
test_postarch_buildMethod · 0.90
setUpMethod · 0.90

Calls

no outgoing calls