From: Thomas Petazzoni Date: Sat, 10 Nov 2012 12:12:05 +0000 (+0000) Subject: libnspr: fix build with ARMv7 toolchains X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27a0cfaa64605eac86a69e6a565eeda556b6b125;p=buildroot.git libnspr: fix build with ARMv7 toolchains Fixes the following build failure: http://autobuild.buildroot.org/results/d7323831372050e425a34f5104a46d8cbd6be214/build-end.log Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk index 736984d096..a9d5812f21 100644 --- a/package/libnspr/libnspr.mk +++ b/package/libnspr/libnspr.mk @@ -16,6 +16,12 @@ LIBNSPR_CONF_OPT = --host=$(GNU_HOST_NAME) LIBNSPR_CONF_OPT += --$(if $(BR2_ARCH_IS_64),en,dis)able-64bit LIBNSPR_CONF_OPT += --$(if $(BR2_INET_IPV6),en,dis)able-ipv6 +ifeq ($(BR2_cortex_a8)$(BR2_cortex_a9),y) +LIBNSPR_CONF_OPT += --enable-thumb2 +else +LIBNSPR_CONF_OPT += --disable-thumb2 +endif + define LIBNSPR_INSTALL_STAGING_PC $(INSTALL) -D -m 0644 $(TOPDIR)/package/libnspr/nspr.pc.in \ $(STAGING_DIR)/usr/lib/pkgconfig/nspr.pc