Processed: gcc-snapshot: found 904289 20180908-1
Processing commands for cont...@bugs.debian.org: > found 904289 20180908-1 Bug #904289 [src:gcc-snapshot] gcc-snapshot: FTBFS on hurd-i386 The source 'gcc-snapshot' and version '20180908-1' do not appear to match any binary packages Marked as found in versions gcc-snapshot/20180908-1. > thanks Stopping processing here. Please contact me if you need assistance. -- 904289: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=904289 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#907632: [ppc64-el] Breaks building aspectc++
Control: tags -1 + moreinfo GCC 8 is configured now with quadmath support on ppc64el. There shouldn't be any other differences. But having the preprocessed source and the command line options used for the build would be useful. On 30.08.2018 14:11, Reinhard Tartler wrote: > Package: gcc-8 > Version: 8.2.0-4 > Affects: aspectc++ > X-Debbugs-CC: debian-powe...@lists.debian.org > > Relevant part from > https://buildd.debian.org/status/fetch.php?pkg=aspectc%2B%2B&arch=ppc64el&ver=1%3A2.2%2Bgit20170823-8&stamp=1535500793&raw=0 > > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/src/PrePrintVisitor.Icc:19: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/PreSemIterator.h:24: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/PreTreeIterator.h:24: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/PreTree.h:26: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/Token.h:26: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/Location.h:25: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/Filename.h:26: > In file included from > /build/aspectc++-rtQXFn/aspectc++-2.2+git20170823/Puma/gen-release/step1/inc/Puma/Printable.h:25: > In file included from /usr/include/c++/8/iostream:39: > In file included from /usr/include/c++/8/ostream:38: > In file included from /usr/include/c++/8/ios:38: > In file included from /usr/include/c++/8/iosfwd:40: > In file included from /usr/include/c++/8/bits/postypes.h:40: > In file included from /usr/include/c++/8/cwchar:44: > In file included from /usr/include/wchar.h:30: > /usr/include/powerpc64le-linux-gnu/bits/floatn.h:72:52: error: unknown > machine mode '__KC__' > typedef _Complex float __cfloat128 __attribute__ ((__mode__ (__KC__))); >^ > /usr/include/powernpc64le-linux-gnu/bits/floatn.h:84:9: error: unknown type > name '__ieee128' > typedef __float128 _Float128; > ^ > :431:20: note: expanded from here > #define __float128 __ieee128 >^ > > If you look at > https://buildd.debian.org/status/logs.php?pkg=aspectc%2B%2B&arch=ppc64el, > you'll see that 1:2.2+git20170823-7 did build successfully. There are no > relevant > upstream code changes, but it was built with gcc-7, which works fine. > 1:2.2+git20170823-8 uses gcc-8, > and that breaks. > > Also it seems this bug seems to affect the architecture ppc64-el only. > > Any ideas, hints and suggestions are much appreciated. > > Best, > -rt >
Processed: Re: Bug#907632: [ppc64-el] Breaks building aspectc++
Processing control commands: > tags -1 + moreinfo Bug #907632 [gcc-8] [ppc64-el] Breaks building aspectc++ Added tag(s) moreinfo. -- 907632: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=907632 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#907586: marked as done (g++ compiler problem on hppa)
Your message dated Sun, 09 Sep 2018 13:04:11 + with message-id and subject line Bug#907586: fixed in gcc-8 8.2.0-6 has caused the Debian Bug report #907586, regarding g++ compiler problem on hppa to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 907586: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=907586 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: g++-8 Version: 8.2.0-4 Severity: important One of the packages I maintain have been failing in its test suite on hppa ever since it was first uploaded. I was never able to investigate the reason for this because there until recently were no hppa porter box. I recently discovered that there is now an hppa porter box and I have been able to reproduce the issue. I managed to take the failing part of the code and reduce it to a small test case that is attached to this bug report. The issue only happens on hppa, and only when linking using a shared library. If the test case is linked statically the issue does not appear. On all architectures except hppa the output of the test case is the following: $ make g++ -O2 -g -c -o main.o main.cpp g++ -O2 -g -fPIC -c -o S.o S.cpp g++ -shared -o libS.so S.o g++ -o main main.o -L. -lS g++ -o altmain main.o S.o -- Running using shared library LD_LIBRARY_PATH=. ./main OK -- Running using static build ./altmain OK On hppa the output is as follows: $ make g++ -O2 -g -c -o main.o main.cpp g++ -O2 -g -fPIC -c -o S.o S.cpp g++ -shared -o libS.so S.o g++ -o main main.o -L. -lS g++ -o altmain main.o S.o -- Running using shared library LD_LIBRARY_PATH=. ./main not OK -- Running using static build ./altmain OK Mattias test.tar.gz Description: application/compressed-tar smime.p7s Description: S/MIME cryptographic signature --- End Message --- --- Begin Message --- Source: gcc-8 Source-Version: 8.2.0-6 We believe that the bug you reported is fixed in the latest version of gcc-8, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to 907...@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Matthias Klose (supplier of updated gcc-8 package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@ftp-master.debian.org) -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 09 Sep 2018 14:43:43 +0200 Source: gcc-8 Binary: gcc-8-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc-8-dev libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib64gcc-8-dev lib32gcc1 lib32gcc1-dbg lib32gcc-8-dev libn32gcc1 libn32gcc1-dbg libn32gcc-8-dev libx32gcc1 libx32gcc1-dbg libx32gcc-8-dev gcc-8 gcc-8-multilib gcc-8-test-results gcc-8-plugin-dev gcc-8-hppa64-linux-gnu cpp-8 gcc-8-locales g++-8 g++-8-multilib libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg libx32gomp1 libx32gomp1-dbg libitm1 libitm1-dbg lib32itm1 lib32itm1-dbg lib64itm1 lib64itm1-dbg libx32itm1 libx32itm1-dbg libatomic1 libatomic1-dbg lib32atomic1 lib32atomic1-dbg lib64atomic1 lib64atomic1-dbg libn32atomic1 libn32atomic1-dbg libx32atomic1 libx32atomic1-dbg libasan5 libasan5-dbg lib32asan5 lib32asan5-dbg lib64asan5 lib64asan5-dbg libx32asan5 libx32asan5-dbg liblsan0 liblsan0-dbg lib32lsan0 lib32lsan0-dbg libx32lsan0 libx32lsan0-dbg libtsan0 libtsan0-dbg libubsan1 libubsan1-dbg lib32ubsan1 lib32ubsan1-dbg lib64ubsan1 lib64ubsan1-dbg libx32ubsan1 libx32ubsan1-dbg libmpx2 libmpx2-dbg lib32mpx2 lib32mpx2-dbg lib64mpx2 lib64mpx2-dbg libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg lib64quadmath0 lib64quadmath0-dbg libx32quadmath0 libx32quadmath0-dbg libcc1-0 libgccjit0 libgccjit0-dbg libgccjit-8-doc libgccjit-8-dev gobjc++-8 gobjc++-8-multilib gobjc-8 gobjc-8-multilib libobjc-8-dev lib64objc-8-dev lib32objc-8-dev libn32objc-8-dev libx32objc-8-dev libobjc4 libobjc4-dbg lib64objc4 lib64objc4-dbg lib32objc4 lib32objc4-dbg libn32objc4 libn32objc4-dbg libx32objc4 libx32objc4-dbg gfortran-8 gfortran-8-multilib libgfortran-8-dev lib64gfortran-8-dev lib32gfortran-8-dev libn32gfortran-8-dev libx32gfortran-8-dev libgfortran5 libgfortran5-dbg lib64gfortran5 lib64gfortran5-dbg lib32gfortran5 lib32gfortran5-dbg libn32gfortran5 libn32gfortran5-dbg libx32gfortran5 libx32gfo
Processing of gcc-8_8.2.0-6_source.changes
gcc-8_8.2.0-6_source.changes uploaded successfully to localhost along with the files: gcc-8_8.2.0-6.dsc gcc-8_8.2.0-6.diff.gz gcc-8_8.2.0-6_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org)
gcc-8_8.2.0-6_source.changes ACCEPTED into unstable
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Sun, 09 Sep 2018 14:43:43 +0200 Source: gcc-8 Binary: gcc-8-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc-8-dev libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib64gcc-8-dev lib32gcc1 lib32gcc1-dbg lib32gcc-8-dev libn32gcc1 libn32gcc1-dbg libn32gcc-8-dev libx32gcc1 libx32gcc1-dbg libx32gcc-8-dev gcc-8 gcc-8-multilib gcc-8-test-results gcc-8-plugin-dev gcc-8-hppa64-linux-gnu cpp-8 gcc-8-locales g++-8 g++-8-multilib libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg libx32gomp1 libx32gomp1-dbg libitm1 libitm1-dbg lib32itm1 lib32itm1-dbg lib64itm1 lib64itm1-dbg libx32itm1 libx32itm1-dbg libatomic1 libatomic1-dbg lib32atomic1 lib32atomic1-dbg lib64atomic1 lib64atomic1-dbg libn32atomic1 libn32atomic1-dbg libx32atomic1 libx32atomic1-dbg libasan5 libasan5-dbg lib32asan5 lib32asan5-dbg lib64asan5 lib64asan5-dbg libx32asan5 libx32asan5-dbg liblsan0 liblsan0-dbg lib32lsan0 lib32lsan0-dbg libx32lsan0 libx32lsan0-dbg libtsan0 libtsan0-dbg libubsan1 libubsan1-dbg lib32ubsan1 lib32ubsan1-dbg lib64ubsan1 lib64ubsan1-dbg libx32ubsan1 libx32ubsan1-dbg libmpx2 libmpx2-dbg lib32mpx2 lib32mpx2-dbg lib64mpx2 lib64mpx2-dbg libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg lib64quadmath0 lib64quadmath0-dbg libx32quadmath0 libx32quadmath0-dbg libcc1-0 libgccjit0 libgccjit0-dbg libgccjit-8-doc libgccjit-8-dev gobjc++-8 gobjc++-8-multilib gobjc-8 gobjc-8-multilib libobjc-8-dev lib64objc-8-dev lib32objc-8-dev libn32objc-8-dev libx32objc-8-dev libobjc4 libobjc4-dbg lib64objc4 lib64objc4-dbg lib32objc4 lib32objc4-dbg libn32objc4 libn32objc4-dbg libx32objc4 libx32objc4-dbg gfortran-8 gfortran-8-multilib libgfortran-8-dev lib64gfortran-8-dev lib32gfortran-8-dev libn32gfortran-8-dev libx32gfortran-8-dev libgfortran5 libgfortran5-dbg lib64gfortran5 lib64gfortran5-dbg lib32gfortran5 lib32gfortran5-dbg libn32gfortran5 libn32gfortran5-dbg libx32gfortran5 libx32gfortran5-dbg gccgo-8 gccgo-8-multilib libgo13 libgo13-dbg lib64go13 lib64go13-dbg lib32go13 lib32go13-dbg libn32go13 libn32go13-dbg libx32go13 libx32go13-dbg libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libx32stdc++6 libstdc++-8-dev libstdc++-8-pic libstdc++6-8-dbg lib32stdc++-8-dev lib32stdc++6-8-dbg lib64stdc++-8-dev lib64stdc++6-8-dbg libn32stdc++-8-dev libn32stdc++6-8-dbg libx32stdc++-8-dev libx32stdc++6-8-dbg libstdc++-8-doc gnat-8 gnat-8-sjlj libgnat-8 libgnat-8-dbg libgnatvsn8-dev libgnatvsn8 libgnatvsn8-dbg gdc-8 gdc-8-multilib libgphobos-8-dev libgphobos76 libgphobos76-dbg lib64gphobos-8-dev lib64gphobos76 lib64gphobos76-dbg lib32gphobos-8-dev lib32gphobos76 lib32gphobos76-dbg libx32gphobos-8-dev libx32gphobos76 libx32gphobos76-dbg gccbrig-8 libhsail-rt-8-dev libhsail-rt0 libhsail-rt0-dbg fixincludes gcc-8-offload-nvptx libgomp-plugin-nvptx1 gcc-8-source Architecture: source Version: 8.2.0-6 Distribution: unstable Urgency: medium Maintainer: Debian GCC Maintainers Changed-By: Matthias Klose Description: cpp-8 - GNU C preprocessor fixincludes - Fix non-ANSI header files g++-8 - GNU C++ compiler g++-8-multilib - GNU C++ compiler (multilib support) gcc-8 - GNU C compiler gcc-8-base - GCC, the GNU Compiler Collection (base package) gcc-8-hppa64-linux-gnu - GNU C compiler (cross compiler for hppa64) gcc-8-locales - GCC, the GNU compiler collection (native language support files) gcc-8-multilib - GNU C compiler (multilib support) gcc-8-offload-nvptx - GCC offloading compiler to NVPTX gcc-8-plugin-dev - Files for GNU GCC plugin development. gcc-8-source - Source of the GNU Compiler Collection gcc-8-test-results - Test results for the GCC test suite gccbrig-8 - GNU BRIG (HSA IL) frontend gccgo-8- GNU Go compiler gccgo-8-multilib - GNU Go compiler (multilib support) gdc-8 - GNU D compiler (version 2) gdc-8-multilib - GNU D compiler (version 2, multilib support) gfortran-8 - GNU Fortran compiler gfortran-8-multilib - GNU Fortran compiler (multilib support) gnat-8 - GNU Ada compiler gnat-8-sjlj - GNU Ada compiler (setjump/longjump runtime library) gobjc++-8 - GNU Objective-C++ compiler gobjc++-8-multilib - GNU Objective-C++ compiler (multilib support) gobjc-8- GNU Objective-C compiler gobjc-8-multilib - GNU Objective-C compiler (multilib support) lib32asan5 - AddressSanitizer -- a fast memory error detector (32bit) lib32asan5-dbg - AddressSanitizer -- a fast memory error detector (32 bit debug sy lib32atomic1 - support library providing __atomic built-in functions (32bit) lib32atomic1-dbg - support library providing __atomic built-in functions (32 bit deb lib32gcc-8-dev - GCC support library (32 bit development files) lib32gcc1 - GCC support library (32 bit Version) lib32gcc1-dbg - GCC support library (debug symbols) lib32gfortran-8-dev - Runtime library for GNU Fortran applications (32bit development f lib32gfortran5 - R
Results for 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) testsuite on i686-pc-linux-gnu
LAST_UPDATED: Sat Sep 8 14:39:48 UTC 2018 (revision 264170) === acats tests === FAIL: cxh3002 === acats Summary === # of expected passes2319 # of unexpected failures1 Native configuration is i686-pc-linux-gnu === brig tests === Running target unix === brig Summary for unix === # of unsupported tests 1 Running target unix === brig Summary for unix === # of unsupported tests 1 === brig Summary === # of unsupported tests 2 === g++ tests === Running target unix FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 === g++ Summary === # of expected passes250798 # of unexpected failures6 # of expected failures 1058 # of unsupported tests 9816 /build/gcc-snapshot-mMDmD4/gcc-snapshot-20180908/build/gcc/xg++ version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === gcc tests === Running target unix XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/pr41353-1.c -O0 line 28 j == 28 + 37 XPASS: gcc.dg/guality/pr41353-1.c -O0 line 28 j == 28 + 37 XPASS: gcc.dg/guality/pr41353-1.c -Os -DPREVENT_OPTIMIZATION line 28 j == 28 + 37 XPASS: gcc.dg/guality/pr41353-1.c -Os -DPREVENT_OPTIMIZATION line 28 j == 28 + 37 XPASS: gcc.dg/guality/pr41353-1.c -Og -DPREVENT_OPTIMIZATION line 28 j == 28 + 37 XPASS: gcc.dg/guality/pr41353-1.c -Og -DPREVENT_OPTIMIZATION line 28 j == 28 + 37 FAIL: gcc.dg/guality/pr41447-1.c -O2 -DPREVENT_OPTIMIZATION execution test FAIL: gcc.dg/guality/pr41447-1.c -O2 -DPREVENT_OPTIMIZATION execution test FAIL: gcc.dg/guality/pr41447-1.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test FAIL: gcc.d
Results for 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) testsuite on arm-unknown-linux-gnueabi
LAST_UPDATED: Sat Sep 8 14:39:48 UTC 2018 (revision 264170) Native configuration is arm-unknown-linux-gnueabi === libatomic tests === Running target unix === libatomic Summary === # of expected passes44 # of unsupported tests 5 === libffi tests === Running target unix === libffi Summary === # of expected passes2214 === libgo tests === Running target unix FAIL: io FAIL: log FAIL: runtime FAIL: runtime/pprof FAIL: sync/atomic === libgo Summary === # of expected passes158 # of unexpected failures5 /build/gcc-snapshot-AAaZcz/gcc-snapshot-20180908/build/./gcc/gccgo version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === libgomp tests === Running target unix UNRESOLVED: libgomp.oacc-c++/non-scalar-data.C -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -O2 compilation failed to produce executable === libgomp Summary === # of expected passes5986 # of expected failures 3 # of unresolved testcases 1 # of unsupported tests 395 === libstdc++ tests === Running target unix FAIL: 26_numerics/headers/cmath/hypot-long-double.cc execution test === libstdc++ Summary === # of expected passes12952 # of unexpected failures1 # of expected failures 77 # of unsupported tests 337 === acats tests === === acats Summary === # of expected passes2320 # of unexpected failures0 === g++ tests === Running target unix FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/gcov/gcov-8.C -std=gnu++11 gcov failed: File '/build/gcc-snapshot-AAaZcz/gcc-snapshot-20180908/src/gcc/testsuite/g++.dg/gcov/gcov-8.C' FAIL: g++.dg/gcov/gcov-8.C -std=gnu++14 gcov failed: File '/build/gcc-snapshot-AAaZcz/gcc-snapshot-20180908/src/gcc/testsuite/g++.dg/gcov/gcov-8.C' FAIL: g++.dg/gcov/gcov-8.C -std=gnu++98 gcov failed: File '/build/gcc-snapshot-AAaZcz/gcc-snapshot-20180908/src/gcc/testsuite/g++.dg/gcov/gcov-8.C' FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 FAIL: g++.dg/lto/pr65276 cp_lto_pr65276_0.o-cp_lto_pr65276_1.o link, -flto -O0 -std=c++11 === g++ Summary === # of expected passes122745 # of unexpected failures7 # of expected failures 534 # of unsupported tests 5682 /build/gcc-snapshot-AAaZcz/gcc-snapshot-20180908/build/gcc/xg++ version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === gcc tests === Running target unix FAIL: gcc.dg/gimplefe-28.c (internal compiler error) FAIL: gcc.dg/gimplefe-28.c (test for excess errors) XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -Os -DPREVENT_OPTIMIZATION execution test FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg3 == 3 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg4 == 4 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg5 == 5
Results for 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) testsuite on aarch64-unknown-linux-gnu
LAST_UPDATED: Sat Sep 8 14:39:48 UTC 2018 (revision 264170) Native configuration is aarch64-unknown-linux-gnu === libatomic tests === Running target unix === libatomic Summary === # of expected passes54 === libffi tests === Running target unix === libffi Summary === # of expected passes2214 === libgo tests === Running target unix FAIL: runtime/pprof === libgo Summary === # of expected passes162 # of unexpected failures1 /build/gcc-snapshot-2m55PM/gcc-snapshot-20180908/build/./gcc/gccgo version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === libgomp tests === Running target unix UNRESOLVED: libgomp.oacc-c++/non-scalar-data.C -DACC_DEVICE_TYPE_host=1 -DACC_MEM_SHARED=1 -O2 compilation failed to produce executable === libgomp Summary === # of expected passes5986 # of expected failures 3 # of unresolved testcases 1 # of unsupported tests 395 === libitm tests === Running target unix === libitm Summary === # of expected passes42 # of expected failures 3 # of unsupported tests 1 === libstdc++ tests === Running target unix === libstdc++ Summary === # of expected passes13011 # of expected failures 77 # of unsupported tests 321 === acats tests === === acats Summary === # of expected passes2320 # of unexpected failures0 === g++ tests === Running target unix FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 === g++ Summary === # of expected passes123669 # of unexpected failures3 # of expected failures 538 # of unsupported tests 5626 /build/gcc-snapshot-2m55PM/gcc-snapshot-20180908/build/gcc/xg++ version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === gcc tests === Running target unix FAIL: gcc.dg/zero_bits_compound-1.c scan-assembler-not (and: XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -Os -DPREVENT_OPTIMIZATION execution test FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg3 == 3 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg4 == 4 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg5 == 5 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg6 == 6 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg7 == 30 FAIL: gcc.dg/guality/
Results for 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) testsuite on s390x-ibm-linux-gnu
LAST_UPDATED: Sat Sep 8 14:39:48 UTC 2018 (revision 264170) === acats tests === === acats Summary === # of expected passes2320 # of unexpected failures0 Native configuration is s390x-ibm-linux-gnu === g++ tests === Running target unix FAIL: g++.dg/asan/function-argument-3.C -O0 execution test FAIL: g++.dg/asan/function-argument-3.C -O0 execution test FAIL: g++.dg/asan/function-argument-3.C -O1 output pattern test FAIL: g++.dg/asan/function-argument-3.C -O1 output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 -flto -fno-use-linker-plugin -flto-partition=none output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 -flto -fno-use-linker-plugin -flto-partition=none output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects output pattern test FAIL: g++.dg/asan/function-argument-3.C -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects output pattern test FAIL: g++.dg/asan/function-argument-3.C -O3 -g output pattern test FAIL: g++.dg/asan/function-argument-3.C -O3 -g output pattern test FAIL: g++.dg/asan/function-argument-3.C -Os output pattern test FAIL: g++.dg/asan/function-argument-3.C -Os output pattern test FAIL: c-c++-common/spec-barrier-1.c -std=gnu++11 (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -std=gnu++11 (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -std=gnu++14 (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -std=gnu++14 (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -std=gnu++98 (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -std=gnu++98 (test for excess errors) FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O2 line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 FAIL: g++.dg/guality/pr55665.C -O3 -g line 23 p == 40 === g++ Summary === # of expected passes250518 # of unexpected failures26 # of expected failures 1070 # of unsupported tests 11278 /build/gcc-snapshot-ZCB8jl/gcc-snapshot-20180908/build/gcc/xg++ version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === gcc tests === Running target unix FAIL: c-c++-common/spec-barrier-1.c -Wc++-compat (test for excess errors) FAIL: c-c++-common/spec-barrier-1.c -Wc++-compat (test for excess errors) FAIL: gcc.dg/builtin-bswap-7.c scan-rtl-dump-not combine "bswapdi" FAIL: gcc.dg/builtin-bswap-7.c scan-rtl-dump-not combine "bswapdi" FAIL: gcc.dg/loop-9.c scan-rtl-dump loop2_invariant "Decided" FAIL: gcc.dg/loop-9.c scan-rtl-dump loop2_invariant "Decided" FAIL: gcc.dg/loop-9.c scan-rtl-dump loop2_invariant "without introducing a new temporary register" FAIL: gcc.dg/loop-9.c scan-rtl-dump loop2_invariant "without introducing a new temporary register" FAIL: gcc.dg/pr21643.c scan-tree-dump-times reassoc1 "Optimizing range tests c_[0-9]*.D. -.0, 31. and -.32, 32.[\\n\\r]* into" 5 FAIL: gcc.dg/pr21643.c scan-tree-dump-times reassoc1 "Optimizing range tests c_[0-9]*.D. -.0, 31. and -.32, 32.[\\n\\r]* into" 5 XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=n
Results for 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) testsuite on powerpc64le-unknown-linux-gnu
LAST_UPDATED: Sat Sep 8 14:39:48 UTC 2018 (revision 264170) === acats tests === === acats Summary === # of expected passes2320 # of unexpected failures0 Native configuration is powerpc64le-unknown-linux-gnu === g++ tests === Running target unix FAIL: g++.dg/pr83239.C -std=gnu++98 (test for excess errors) === g++ Summary === # of expected passes125851 # of unexpected failures1 # of expected failures 535 # of unsupported tests 5469 /build/gcc-snapshot-zvTqlR/gcc-snapshot-20180908/build/gcc/xg++ version 9.0.0 20180908 (experimental) [trunk revision 264170] (Debian 20180908-1) === gcc tests === Running target unix XPASS: gcc.dg/Wtrampolines.c standard descriptors (test for warnings, line 29) FAIL: gcc.dg/attr-ifunc-4.c execution test FAIL: gcc.dg/sms-1.c scan-rtl-dump-times sms "SMS succeeded" 1 XPASS: gcc.dg/guality/example.c -O0 execution test XPASS: gcc.dg/guality/example.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/example.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O0 execution test XPASS: gcc.dg/guality/guality.c -O1 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Os -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/guality.c -Og -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fno-use-linker-plugin -flto-partition=none -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -O3 -g -DPREVENT_OPTIMIZATION execution test XPASS: gcc.dg/guality/inline-params.c -Os -DPREVENT_OPTIMIZATION execution test FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg3 == 3 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg4 == 4 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg5 == 5 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg6 == 6 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 16 arg7 == 30 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg3 == 3 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg4 == 4 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg5 == 5 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg6 == 6 FAIL: gcc.dg/guality/pr36728-2.c -O2 -flto -fuse-linker-plugin -fno-fat-lto-objects -DPREVENT_OPTIMIZATION line 18 arg7 == 30 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg3 == 3 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg4 == 4 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg5 == 5 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg6 == 6 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 16 arg7 == 30 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 18 arg1 == 1 FAIL: gcc.dg/guality/pr36728-2.c -O3 -g -DPREVENT_OPTIMIZATION line 18 arg2 == 2 FAIL: gcc.dg/guality/pr36728-2.
Bug#897876: marked as done (theseus: ftbfs with GCC-8)
Your message dated Mon, 10 Sep 2018 09:36:36 +0300 with message-id <20180910063636.GG31424@localhost> and subject line Fixed in gcc-8 8.2.0-6 has caused the Debian Bug report #897876, regarding theseus: ftbfs with GCC-8 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact ow...@bugs.debian.org immediately.) -- 897876: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=897876 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --- Begin Message --- Package: src:theseus Version: 3.3.0-6 Severity: normal Tags: sid buster User: debian-gcc@lists.debian.org Usertags: ftbfs-gcc-8 Please keep this issue open in the bug tracker for the package it was filed for. If a fix in another package is required, please file a bug for the other package (or clone), and add a block in this package. Please keep the issue open until the package can be built in a follow-up test rebuild. The package fails to build in a test rebuild on at least amd64 with gcc-8/g++-8, but succeeds to build with gcc-7/g++-7. The severity of this report will be raised before the buster release. The full build log can be found at: http://aws-logs.debian.net/2018/05/01/gcc8/theseus_3.3.0-6_unstable_gcc8.log.gz The last lines of the build log are at the end of this report. To build with GCC 8, either set CC=gcc-8 CXX=g++-8 explicitly, or install the gcc, g++, gfortran, ... packages from experimental. apt-get -t=experimental install g++ Common build failures are new warnings resulting in build failures with -Werror turned on, or new/dropped symbols in Debian symbols files. For other C/C++ related build failures see the porting guide at http://gcc.gnu.org/gcc-8/porting_to.html [...] make[1]: Entering directory '/<>' find . -name '*.[oa]' -exec rm -f {} \; make[1]: Leaving directory '/<>' make[1]: Entering directory '/<>' rm -f theseus distfit make[1]: Leaving directory '/<>' dh_clean debian/rules build-arch dh build-arch dh_update_autotools_config -a dh_autoreconf -a dh_auto_configure -a debian/rules override_dh_auto_build make[1]: Entering directory '/<>' dh_auto_build --no-parallel make -j1 make[2]: Entering directory '/<>' ( cd libdistfit; make && cp libdistfit.a ../lib ) make[3]: Entering directory '/<>/libdistfit' /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c statistics.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c beta_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c betaprime_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c betasym_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c binomial_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c cauchy_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c chi_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c chisqr_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c chisqrgen_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c EVD_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c exp_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c gamma_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c invchisqr_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pedantic -std=c99 -Wno-unused-result -pthread -c invgamma_dist.c /usr/bin/gcc -O3 -ffast-math -fstrict-aliasing -funroll-loops -fomit-frame-pointer -Wall -Werror -pe