From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gary Bisson Date: Thu, 10 Dec 2015 14:52:40 +0100 Subject: [Buildroot] [PATCH v2 4/4] libfslparser: add missing configure options In-Reply-To: <1449755560-2911-1-git-send-email-gary.bisson@boundarydevices.com> References: <1449755560-2911-1-git-send-email-gary.bisson@boundarydevices.com> Message-ID: <1449755560-2911-5-git-send-email-gary.bisson@boundarydevices.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net Enable hard float support when the proper configuration is setup. BR2_ARM_EABIHF=y See Yocto equivalent: https://github.com/Freescale/meta-fsl-arm/blob/fido/recipes- multimedia/libfslparser/libfslparser.inc Tested with Linaro ARM 2014.09 toolchain. Signed-off-by: Gary Bisson --- Thanks to those options, I could see that libraries from copied from release/lib/yocto/hw instead of release/lib/yocto/sw. Regards, Gary --- package/libfslparser/libfslparser.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/libfslparser/libfslparser.mk b/package/libfslparser/libfslparser.mk index 221d5e4..c2b63ce 100644 --- a/package/libfslparser/libfslparser.mk +++ b/package/libfslparser/libfslparser.mk @@ -13,6 +13,10 @@ LIBFSLPARSER_LICENSE = Freescale Semiconductor Software License Agreement LIBFSLPARSER_LICENSE_FILES = EULA COPYING LIBFSLPARSER_REDISTRIBUTE = NO +ifeq ($(BR2_ARM_EABIHF),y) +LIBFSLPARSER_CONF_OPTS += --enable-fhw +endif + define LIBFSLPARSER_EXTRACT_CMDS $(call FREESCALE_IMX_EXTRACT_HELPER,$(DL_DIR)/$(LIBFSLPARSER_SOURCE)) endef -- 2.6.2