reduce required gcc version. archive/raspbian/7+rpi1 raspbian/7+rpi1
authorPeter Michael Green <plugwash@raspbian.org>
Thu, 17 Oct 2024 22:09:18 +0000 (22:09 +0000)
committerPeter Michael Green <plugwash@raspbian.org>
Thu, 17 Oct 2024 22:09:18 +0000 (22:09 +0000)
debian/changelog
debian/control
debian/rules

index 2203c94f0c827fad2e70d134ef98ffab4d5ba4e5..4655b7ee19116a515884e09a36df5e8941f680c0 100644 (file)
@@ -3,6 +3,9 @@ gcc-14-cross (7+rpi1) trixie-staging; urgency=medium
   [changes brought forward from gcc-10-cross 11+rpi1 by Peter Michael Green <plugwash@raspbian.org> at Thu, 24 Sep 2020 23:26:27 +0000]
   * Build sufficient cross-compilers on armhf to build u-boot.
 
+  [changes introduced in 7+rpi1 by Peter Michael Green]
+  * Reduce gcc-14 build-dependency to what we have available in Raspbian
+
  -- Peter Michael Green <plugwash@raspbian.org>  Sat, 21 Oct 2023 20:29:22 +0000
 
 gcc-14-cross (7) unstable; urgency=medium
index 5be8e254ed36157406d82b9faacbc4a1d3fb6b8a..753b273a7324f2eec4631ffd7ad1f84aaa8fac16 100644 (file)
@@ -4,8 +4,8 @@ Priority: optional
 Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
 Uploaders: Matthias Klose <doko@debian.org>
 Standards-Version: 4.7.0
-Build-Depends: gcc-14-source (>= 14.2.0-6~),
-  gcc-14-base (>= 14.2.0-6~),
+Build-Depends: gcc-14-source (>= 14.2.0-3~),
+  gcc-14-base (>= 14.2.0-3~),
   binutils-multiarch (>= 2.41-4),
   autoconf2.69, bison (>= 1:2.3),
   chrpath, debhelper (>= 11), dpkg-dev (>= 1.21.17), flex, gawk, gettext,
index 440981c8fdfe635971707b91084d142ec4b52282..d5e1ae6ef52351c939939fe16d160f5b00b27607 100755 (executable)
@@ -15,8 +15,8 @@ distrelease := $(shell lsb_release -cs)
 GCC_VER := $(shell dpkg-parsechangelog |egrep ^Source:|cut -f2 -d' '|cut -f2 -d'-')
 
 ifeq ($(GCC_VER),14)
-  MIN_VER_GCC      := 14.2.0-6~
-  PPA_VER_GCC      := 14.2.0-6~
+  MIN_VER_GCC      := 14.2.0-3~
+  PPA_VER_GCC      := 14.2.0-3~
 endif
 
 ifndef MIN_VER_GCC