From patchwork Sat Nov 10 22:12:05 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: libnspr: fix build with ARMv7 toolchains Date: Sat, 10 Nov 2012 12:12:05 -0000 From: Thomas Petazzoni X-Patchwork-Id: 198220 Message-Id: <1352585525-25600-1-git-send-email-thomas.petazzoni@free-electrons.com> To: buildroot@uclibc.org Fixes the following build failure: http://autobuild.buildroot.org/results/d7323831372050e425a34f5104a46d8cbd6be214/build-end.log Signed-off-by: Thomas Petazzoni --- package/libnspr/libnspr.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/libnspr/libnspr.mk b/package/libnspr/libnspr.mk index 736984d..a9d5812 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