diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-21 22:27:05 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-06 23:58:36 +0100 |
commit | d6a865bd52f021f8fe56794edd3c685aa8d277bf (patch) | |
tree | f4a4180e90f9367ff8bca7509965ade4c5f9976a | |
parent | fe417778514594f1acb526b2842ba103961e45bb (diff) | |
download | buildroot-d6a865bd52f021f8fe56794edd3c685aa8d277bf.tar.gz buildroot-d6a865bd52f021f8fe56794edd3c685aa8d277bf.zip |
libnspr: use the BR2_ARM_CPU_ARMV7A option
The libnspr --enable-thumb2 option was only enabled on Cortex-A8 and
Cortex-A9. This commit switches to using BR2_ARM_CPU_ARMV7A instead,
which will allow using Thumb2 for this package even with the other
Cortex-A cores.
[Peter: use BR2_ARM_CPU_HAS_THUMB2 instead]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/libnspr/libnspr.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk index eaa6eb75d9..c071d8591f 100644 --- a/package/libnspr/libnspr.mk +++ b/package/libnspr/libnspr.mk @@ -22,7 +22,7 @@ LIBNSPR_CONF_OPTS += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit LIBNSPR_CONF_OPTS += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6 ifeq ($(BR2_arm),y) -ifeq ($(BR2_cortex_a8)$(BR2_cortex_a9),y) +ifeq ($(BR2_ARM_CPU_HAS_THUMB2),y) LIBNSPR_CONF_OPTS += --enable-thumb2 else LIBNSPR_CONF_OPTS += --disable-thumb2 |