diff options
| author | Adrian Perez de Castro <aperez@igalia.com> | 2018-10-10 01:08:50 +0300 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-10 21:21:53 +0200 |
| commit | 9151e83458efc542dc18ca38710fc92eb8564ac6 (patch) | |
| tree | 7e837d85c6d8b5025b5f0936cf5561cc88c669b8 | |
| parent | cf9c80c1818e8b9860692719dd0aa3ca7c0fc817 (diff) | |
| download | buildroot-9151e83458efc542dc18ca38710fc92eb8564ac6.tar.gz buildroot-9151e83458efc542dc18ca38710fc92eb8564ac6.zip | |
webkitgtk: enable package for aarch64
64-bit ARM is well supported, particularly in little-endian
configurations, where JavaScriptCore JIT can be enabled as well.
Signed-off-by: Adrian Perez de Castro <aperez@igalia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | package/webkitgtk/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/webkitgtk/Config.in b/package/webkitgtk/Config.in index 6933248bd6..85a3af81bf 100644 --- a/package/webkitgtk/Config.in +++ b/package/webkitgtk/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS bool # ARM needs BLX, so v5t+, BE completely untested so disabled default y if BR2_arm && !BR2_ARM_CPU_ARMV4 + default y if BR2_aarch64 || BR2_aarch64_be default y if BR2_i386 || BR2_x86_64 # Disabled on MIPS big endian due to sigbus default y if BR2_mipsel || BR2_mips64el @@ -15,6 +16,8 @@ config BR2_PACKAGE_WEBKITGTK_ARCH_SUPPORTS_JIT bool # ARM needs NEON for JIT. default y if BR2_ARM_CPU_HAS_NEON + # AArch64 is supported upstream but not well tested on big-endian mode. + default y if BR2_aarch64 # i386 & x86_64 don't have any special requirements. default y if BR2_i386 default y if BR2_x86_64 |

