summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-10-09 11:20:06 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-10-09 15:23:23 +0200
commit543969e5ef9f6a5f585b2945c80a4d989cada440 (patch)
treedad05df1639d0c22165f986caca8bcdaedf5f693
parent955a92fb0f435a15977d2121ff0d15f14ed288e9 (diff)
downloadbuildroot-543969e5ef9f6a5f585b2945c80a4d989cada440.tar.gz
buildroot-543969e5ef9f6a5f585b2945c80a4d989cada440.zip
webkitgtk24: use the correct Config.in option for NEON
In order to enable JIT support on ARM, webkitgtk24 currently looks at BR2_ARM_ENABLE_NEON, which is not correct: BR2_ARM_CPU_HAS_NEON should be used instead. The BR2_ARM_ENABLE_NEON is only visible for cores that select BR2_ARM_CPU_MAYBE_HAS_NEON, in order to allow to specify if his particular SoC has chosen to integrate NEON or not. And if so, BR2_ARM_CPU_HAS_NEON gets selected. BR2_ARM_CPU_HAS_NEON is in fact selected in two different ways: - Either directly by the CPU core selection, if NEON is mandatory in this CPU core. - Or by BR2_ARM_ENABLE_NEON, for CPU cores where NEON support is optional. So really, BR2_ARM_CPU_HAS_NEON is what should be used by packages. Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r--package/webkitgtk24/webkitgtk24.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/webkitgtk24/webkitgtk24.mk b/package/webkitgtk24/webkitgtk24.mk
index a58fed37be..3be1cc7d83 100644
--- a/package/webkitgtk24/webkitgtk24.mk
+++ b/package/webkitgtk24/webkitgtk24.mk
@@ -88,7 +88,7 @@ endif
# ARM needs NEON for JIT
# i386 & x86_64 don't seem to have any special requirements
-ifeq ($(BR2_ARM_ENABLE_NEON)$(BR2_i386)$(BR2_x86_64),y)
+ifeq ($(BR2_ARM_CPU_HAS_NEON)$(BR2_i386)$(BR2_x86_64),y)
WEBKITGTK24_CONF_OPTS += --enable-jit
else
WEBKITGTK24_CONF_OPTS += --disable-jit
OpenPOWER on IntegriCloud