Control: tag -1 patch Control: found -1 0.8.0-1 On Wed, 7 Apr 2021 11:08:01 +0200 Matthias Klose <d...@debian.org> wrote:
Please work around it by using gcc-9 for bullseye. I'm not going to cherry-pick single patches from the branch.
Building nheko with g++-9 is easy ;-) (The patch works for the version in sid, too.)
@doko: When filing tpu request #986929, I noticed that the last successful nheko build (0.7.2-3+b1 [1], currently in bullseye) was done with gcc-10 10.2.1-3, so this ICE seems to be a regression introduced between -3 and -6? Similarily the last successful odb build was done with gcc-10 10.2.0-3 [2], while it now fails (#986523/#980609)
[1] https://buildd.debian.org/status/fetch.php?pkg=nheko&arch=amd64&ver=0.7.2-3%2Bb1&stamp=1609589163&raw=0 [2] https://buildd.debian.org/status/fetch.php?pkg=odb&arch=amd64&ver=2.4.0-13&stamp=1595785340&raw=0
Andreas
diff -Nru nheko-0.7.2/debian/changelog nheko-0.7.2/debian/changelog --- nheko-0.7.2/debian/changelog 2020-12-14 22:02:58.000000000 +0100 +++ nheko-0.7.2/debian/changelog 2021-04-14 14:23:05.000000000 +0200 @@ -1,3 +1,10 @@ +nheko (0.7.2-3+deb11u1) UNRELEASED; urgency=medium + + * Non-maintainer upload. + * Build with g++-9 for bullseye. (Closes: #986519) + + -- Andreas Beckmann <a...@debian.org> Wed, 14 Apr 2021 14:23:05 +0200 + nheko (0.7.2-3) unstable; urgency=medium * debian/control: diff -Nru nheko-0.7.2/debian/control nheko-0.7.2/debian/control --- nheko-0.7.2/debian/control 2020-12-14 22:01:03.000000000 +0100 +++ nheko-0.7.2/debian/control 2021-04-14 14:23:05.000000000 +0200 @@ -31,6 +31,7 @@ , qtmultimedia5-dev , qttools5-dev , zlib1g-dev + , g++-9 Standards-Version: 4.5.0 Homepage: https://github.com/Nheko-Reborn/nheko Vcs-Git: https://salsa.debian.org/matrix-team/nheko.git diff -Nru nheko-0.7.2/debian/rules nheko-0.7.2/debian/rules --- nheko-0.7.2/debian/rules 2020-06-16 23:51:27.000000000 +0200 +++ nheko-0.7.2/debian/rules 2021-04-14 14:23:05.000000000 +0200 @@ -1,5 +1,8 @@ #!/usr/bin/make -f +export CC=gcc-9 +export CXX=g++-9 + CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS) $(FMTFLAGS) CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) $(CPPFLAGS) $(FMTFLAGS) CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) $(CPPFLAGS) $(FMTFLAGS)