diff --git a/cross/fd/Makefile b/cross/fd/Makefile index 936f62f6d6c..23fedb3b6e6 100644 --- a/cross/fd/Makefile +++ b/cross/fd/Makefile @@ -6,7 +6,6 @@ PKG_DIST_SITE = https://github.com/sharkdp/fd/archive PKG_DIST_FILE = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) PKG_DIR = $(PKG_NAME)-$(PKG_VERS) -# PKG_VERS = 10.* requires rustc >= 1.77.2 (for qoriq we currently have rust 1.77.0 only) # PKG_VERS = 8.7.1 fails to build for RUST_TARGET = armv7-unknown-linux-gnueabi $(ARMv7L_ARCHS) # PKG_VERS >= 9 still fails for$(ARMv7L_ARCHS) # PKG_VERS <= 8.7.0 fails with newer rustc 1.80.1 @@ -15,8 +14,6 @@ UNSUPPORTED_ARCHS = $(ARMv7L_ARCHS) # powerpc archs (except qoriq) are not supported # undefined reference to 'pipe2' UNSUPPORTED_ARCHS += $(OLD_PPC_ARCHS) -# as long as rustc for qoriq is < 1.77.2 -UNSUPPORTED_ARCHS += $(PPC_ARCHS) include ../../mk/spksrc.archs.mk # This is still an issue with rustc 1.77.2 (25ef9e3d8 2024-04-09): diff --git a/cross/fd_9.0.0/Makefile b/cross/fd_9.0.0/Makefile index 8d482e673ec..eb972868e1d 100644 --- a/cross/fd_9.0.0/Makefile +++ b/cross/fd_9.0.0/Makefile @@ -6,7 +6,6 @@ PKG_DIST_SITE = https://github.com/sharkdp/fd/archive PKG_DIST_FILE = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) PKG_DIR = $(PKG_NAME)-$(PKG_VERS) -# PKG_VERS = 10.* requires rustc >= 1.77.2 (for qoriq we currently have rust 1.77.0 only) # PKG_VERS = 8.7.1 fails to build for RUST_TARGET = armv7-unknown-linux-gnueabi $(ARMv7L_ARCHS) # PKG_VERS >= 9 still fails for$(ARMv7L_ARCHS) # PKG_VERS <= 8.7.0 fails with newer rustc 1.80.1 diff --git a/diyspk/fd/Makefile b/diyspk/fd/Makefile index f0f0e91fd9f..fd0ed7a9ab0 100644 --- a/diyspk/fd/Makefile +++ b/diyspk/fd/Makefile @@ -21,7 +21,6 @@ ifeq ($(findstring $(ARCH),$(ARMv7L_ARCHS)),$(ARCH)) DEPENDS += cross/fd_8.7.0 SPK_VERS = 8.7.0 else ifeq ($(findstring $(ARCH),$(PPC_ARCHS)),$(ARCH)) -# qoriq has rust 1.77.0 DEPENDS += cross/fd_9.0.0 SPK_VERS = 9.0.0 else