From: krant Date: Mon, 26 Feb 2024 12:57:50 +0000 (+0200) Subject: dump1090: fix soft float ARM build X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=0a7794c57ecba1632ccbbbca1710774bee69f445;p=openwrt-packages.git dump1090: fix soft float ARM build Package CPU features detection is not supporting soft float ARM. So we disable it altogether. Signed-off-by: krant --- diff --git a/utils/dump1090/Makefile b/utils/dump1090/Makefile index bcaaef0d5..f3c85afd5 100644 --- a/utils/dump1090/Makefile +++ b/utils/dump1090/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dump1090 PKG_VERSION:=9.0 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/flightaware/dump1090/tar.gz/v${PKG_VERSION}? @@ -58,6 +58,10 @@ MAKE_FLAGS += \ CFLAGS="$(TARGET_CFLAGS)" \ UNAME="Linux" +ifeq ($(CONFIG_SOFT_FLOAT),y) +MAKE_FLAGS += CPUFEATURES=no +endif + TARGET_LDFLAGS += -Wl,--as-needed define Package/dump1090/conffiles