From: Ulf Samuelsson Date: Sun, 25 Jan 2009 08:16:53 +0000 (-0000) Subject: liboil make fails on ARM with release toolset for a few unneeded examples due to... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=df8f9549fdd6a3248efe505e94ca509a32db18f0;p=buildroot.git liboil make fails on ARM with release toolset for a few unneeded examples due to use of hidden __clz_tab, do not build them for now, but problem may need further examination --- diff --git a/package/liboil/liboil.mk b/package/liboil/liboil.mk index 37970911ad..74eedacb25 100644 --- a/package/liboil/liboil.mk +++ b/package/liboil/liboil.mk @@ -26,6 +26,8 @@ ifeq ($(BR2_x86_64),y) LIBOIL_CONF_ENV = as_cv_unaligned_access=yes endif +LIBOIL_CONF_OPT+=--with-gnu-ld + ifeq ($(BR2_PACKAGE_LIBGLIB2),y) LIBOIL_GLIB_DEP = libglib2 endif @@ -42,3 +44,8 @@ $(LIBOIL_HOOK_POST_INSTALL): # Remove useless bugreport program from the target rm -f $(TARGET_DIR)/usr/bin/oil-bugreport touch $@ + +$(LIBOIL_HOOK_POST_CONFIGURE): + $(SED) 's/uberopt//g' $(LIBOIL_DIR)/examples/Makefile + $(SED) 's/work//g' $(LIBOIL_DIR)/examples/Makefile +