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 <aleksey.vasilenko@gmail.com>
This commit is contained in:
krant 2024-02-26 14:57:50 +02:00 committed by Rosen Penev
parent fa54dbc72a
commit 0a7794c57e
1 changed files with 5 additions and 1 deletions

View File

@ -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