| 281 | |
| 282 | |
| 283 | class 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 |
no outgoing calls