Re: Bug#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11
On 11.06.2010 15:22, Aurelien Jarno wrote: reassign 584610 gcc-4.4 tag 584610 + pending thanks On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote: Matthias Klose a écrit : On 06.06.2010 00:51, Aurelien Jarno wrote: On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote: Package: eGLIBC Version: 2.11.1-2 Severity: serious gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11: https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666 This FTBFS is caused by the following change: |2009-11-20 Jakub Jelinek | |PR libc/10103 | |* math/math.h: Provide *l long double prototypes redirecting |to double functions even when __NO_LONG_DOUBLE_MATH and not |__LDBL_COMPAT. |* math/complex.h: Likewise. These functions were present before in the library, but not exported in the headers. This has been changed as it is required by ISO C99. GCC tries to find these functions in the GLIBC by compiling a program, so it was failing before, and is successful now. When they are already present in the GLIBC it does not re-export them. Strangely this should also affect ARM, but it seems to build correctly. I haven't investigated why. While these functions are strictly not needed in libstdc++6 anymore, we have two options: - revert the GLIBC change, which means we break the C99 compatibility (as before) - patch GCC to export these functions anyway. What's your opinion? For ARM I did choose the second option, but didn't get any feedback about it. So maybe it's time to ask the mips and arm porters? The patch applied for armel is: http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log I think we should go for the same patch on mips, it's probably better to be ISO C99 compliant on the glibc side. As we discussed, this bug has to be fixed on the gcc side. I have just checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5. I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed in the SVN and the package is in experimental. proposed instead http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html Joseph Meyers suggested that the symbols should only be exported for the old mips O32 ABI, not for the mips64 and n32 ABIs. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4c136a44.3070...@debian.org
Bug#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11
On Sat, Jun 12, 2010 at 01:06:44PM +0200, Matthias Klose wrote: > On 11.06.2010 15:22, Aurelien Jarno wrote: > >reassign 584610 gcc-4.4 > >tag 584610 + pending > >thanks > > > >On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote: > >>Matthias Klose a écrit : > >>>On 06.06.2010 00:51, Aurelien Jarno wrote: > On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote: > >Package: eGLIBC > >Version: 2.11.1-2 > >Severity: serious > > > >gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11: > > > >https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666 > > > This FTBFS is caused by the following change: > > |2009-11-20 Jakub Jelinek > | > |PR libc/10103 > | > |* math/math.h: Provide *l long double prototypes redirecting > |to double functions even when __NO_LONG_DOUBLE_MATH and not > |__LDBL_COMPAT. > |* math/complex.h: Likewise. > > These functions were present before in the library, but not exported > in the headers. This has been changed as it is required by ISO C99. > > GCC tries to find these functions in the GLIBC by compiling a program, > so it was failing before, and is successful now. When they are already > present in the GLIBC it does not re-export them. > > Strangely this should also affect ARM, but it seems to build correctly. > I haven't investigated why. > > While these functions are strictly not needed in libstdc++6 anymore, we > have two options: > - revert the GLIBC change, which means we break the C99 compatibility > (as before) > - patch GCC to export these functions anyway. > > What's your opinion? > >>> > >>>For ARM I did choose the second option, but didn't get any feedback about > >>>it. > >>>So maybe it's time to ask the mips and arm porters? > >>> > >>>The patch applied for armel is: > >>>http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log > >>> > >> > >>I think we should go for the same patch on mips, it's probably better to > >>be ISO C99 compliant on the glibc side. > >> > > > >As we discussed, this bug has to be fixed on the gcc side. I have just > >checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5. > > > >I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I > >don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed > >in the SVN and the package is in experimental. > > proposed instead > http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html > > Joseph Meyers suggested that the symbols should only be exported for > the old mips O32 ABI, not for the mips64 and n32 ABIs. > Indeed the n32 and 64 ABIs do not export these symbols, so there is no need to add compat for them. It's something I should have verified. Do you want me to update the patch in the SVN or do you plan to introduce the patch you submitted to upstream instead? -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurel...@aurel32.net http://www.aurel32.net -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20100612114817.gc1...@ohm.aurel32.net
Re: Bug#584610: [mips] gcc-4.4 build failure after upgrade to eGLIBC-2.11
On 12.06.2010 13:48, Aurelien Jarno wrote: On Sat, Jun 12, 2010 at 01:06:44PM +0200, Matthias Klose wrote: On 11.06.2010 15:22, Aurelien Jarno wrote: reassign 584610 gcc-4.4 tag 584610 + pending thanks On Mon, Jun 07, 2010 at 02:08:20PM +0200, Aurelien Jarno wrote: Matthias Klose a écrit : On 06.06.2010 00:51, Aurelien Jarno wrote: On Sat, Jun 05, 2010 at 03:50:51AM +0200, Matthias Klose wrote: Package: eGLIBC Version: 2.11.1-2 Severity: serious gcc-4.4 and gcc-4.5 fail to build after the upgrade to eGLIBC-2.11: https://buildd.debian.org/fetch.cgi?pkg=gcc-4.4;ver=4.4.4-4;arch=mips;stamp=1275677666 This FTBFS is caused by the following change: |2009-11-20 Jakub Jelinek | |PR libc/10103 | |* math/math.h: Provide *l long double prototypes redirecting |to double functions even when __NO_LONG_DOUBLE_MATH and not |__LDBL_COMPAT. |* math/complex.h: Likewise. These functions were present before in the library, but not exported in the headers. This has been changed as it is required by ISO C99. GCC tries to find these functions in the GLIBC by compiling a program, so it was failing before, and is successful now. When they are already present in the GLIBC it does not re-export them. Strangely this should also affect ARM, but it seems to build correctly. I haven't investigated why. While these functions are strictly not needed in libstdc++6 anymore, we have two options: - revert the GLIBC change, which means we break the C99 compatibility (as before) - patch GCC to export these functions anyway. What's your opinion? For ARM I did choose the second option, but didn't get any feedback about it. So maybe it's time to ask the mips and arm porters? The patch applied for armel is: http://svn.debian.org/viewsvn/gcccvs/branches/sid/gcc-4.4/debian/patches/libstdc%2B%2B-arm-ldbl-compat.diff?view=log I think we should go for the same patch on mips, it's probably better to be ISO C99 compliant on the glibc side. As we discussed, this bug has to be fixed on the gcc side. I have just checked-in a patch in the SVN to do that on both gcc-4.4 and gcc-4.5. I am therefore reassigning this bug on gcc-4.4 and tagging it pending. I don't think it is worth cloning this bug to gcc-4.5 as the bug is fixed in the SVN and the package is in experimental. proposed instead http://gcc.gnu.org/ml/gcc-patches/2010-06/msg01290.html Joseph Meyers suggested that the symbols should only be exported for the old mips O32 ABI, not for the mips64 and n32 ABIs. Indeed the n32 and 64 ABIs do not export these symbols, so there is no need to add compat for them. It's something I should have verified. Do you want me to update the patch in the SVN or do you plan to introduce the patch you submitted to upstream instead? already done for 4.4 and currently testing for 4.5. backport to the 4.3 branch is needed (maybe for 4.1 as well). Matthias -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4c1381f8.8040...@debian.org
Bug#568399: Internal compiler failure at -O3 on ia64
Package: g++-4.4 Version: 4.4.4-4 Severity: normal On May 7, insighttoolkit was successfully built on ia64 using g++-4.4_4.4.3-7 [1] Today, it fails using g++-4.4_4.4.4-4 [2] cd /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB && /usr/bin/c++ -D_ITKBasicFiltersBPython_EXPORTS -DSWIG_GLOBAL -Wno-deprecated -ftemplate-depth-50 -Wall -Wno-deprecated -w -O3 -DNDEBUG -fPIC -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Algorithms -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/BasicFilters -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/IO -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/FEM -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/NeuralNetworks -I/build/buildd-ins ighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/SpatialObject -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/MetaIO -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/NrrdIO -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/NrrdIO -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/DICOMParser -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/DICOMParser -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/expat -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/expat -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/nifti/niftilib -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/nifti/znzlib -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insi ghttoolkit-3.18.0/Utilities/itkExtHdrs -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Numerics/Statistics -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/v3p/netlib -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/vcl -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Utilities/vxl/core -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/v3p/netlib -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/vcl -I/build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Utilities/vxl/core -I/usr/include/gdcm-2.0 -I/usr/include/python2.5 -I/usr/include/tcl8.5 -I/usr/lib/jvm/java- 6-openjdk/include -o CMakeFiles/_ITKBasicFiltersBPython.dir/wrap_itkNormalizeImageFilterPython.o -c /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilterPython.cxx In file included from /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.h:304, from /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageToImageFilter.h:24, from /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/BasicFilters/itkNormalizeImageFilter.h:20, from /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilter.cxx:18, from /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Build/Wrapping/CSwig/BasicFiltersB/wrap_itkNormalizeImageFilterPython.cxx:997: /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.txx: In constructor 'itk::ImageSource::ImageSource() [with TOutputImage = itk::Image]': /build/buildd-insighttoolkit_3.18.0-3-ia64-WbrIxv/insighttoolkit-3.18.0/Code/Common/itkImageSource.txx:47: internal compiler error: in sel_create_recovery_block, at sel-sched-ir.c:5229 Please submit a full bug report, with preprocessed source if appropriate. See for instructions. [1] https://buildd.debian.org/fetch.cgi?pkg=insighttoolkit;ver=3.18.0-2;arch=ia64;stamp=1273329008 [2] https://buildd.debian.org/fetch.cgi?pkg=insighttoolkit&arch=ia64&ver=3.18.0-3&stamp=1276345215&file=log -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Con
Bug#568399: Internal compiler failure at -O3 on ia64
On 12.06.2010 15:29, Steve M. Robbins wrote: with preprocessed source if appropriate. please do so (from a build on ia64). -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4c139658.10...@debian.org
Processed: mips/ld: non-dynamic relocations refer to dynamic symbol
Processing commands for cont...@bugs.debian.org: > reassign 519006 gcc-4.4 Bug #519006 [binutils] mips/ld: non-dynamic relocations refer to dynamic symbol Bug reassigned from package 'binutils' to 'gcc-4.4'. > found 519006 4.4.2-8 Bug #519006 [gcc-4.4] mips/ld: non-dynamic relocations refer to dynamic symbol Bug Marked as found in versions gcc-4.4/4.4.2-8. > thanks Stopping processing here. Please contact me if you need assistance. -- 519006: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=519006 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.127635203910321.transcr...@bugs.debian.org
Processing of gcc-4.4_4.4.4-5_amd64.changes
gcc-4.4_4.4.4-5_amd64.changes uploaded successfully to localhost along with the files: gcc-4.4_4.4.4-5.dsc gcc-4.4_4.4.4-5.diff.gz gcc-4.4-source_4.4.4-5_all.deb libstdc++6-4.4-doc_4.4.4-5_all.deb gcc-4.4-locales_4.4.4-5_all.deb gcc-4.4-base_4.4.4-5_amd64.deb libgcc1_4.4.4-5_amd64.deb libgcc1-dbg_4.4.4-5_amd64.deb lib32gcc1_4.4.4-5_amd64.deb lib32gcc1-dbg_4.4.4-5_amd64.deb libgomp1_4.4.4-5_amd64.deb libgomp1-dbg_4.4.4-5_amd64.deb lib32gomp1_4.4.4-5_amd64.deb lib32gomp1-dbg_4.4.4-5_amd64.deb cpp-4.4_4.4.4-5_amd64.deb protoize_4.4.4-5_amd64.deb fixincludes_4.4.4-5_amd64.deb libmudflap0-4.4-dev_4.4.4-5_amd64.deb libmudflap0_4.4.4-5_amd64.deb libmudflap0-dbg_4.4.4-5_amd64.deb lib32mudflap0_4.4.4-5_amd64.deb lib32mudflap0-dbg_4.4.4-5_amd64.deb gobjc++-4.4-multilib_4.4.4-5_amd64.deb gobjc++-4.4_4.4.4-5_amd64.deb gobjc-4.4-multilib_4.4.4-5_amd64.deb gobjc-4.4_4.4.4-5_amd64.deb libobjc2_4.4.4-5_amd64.deb libobjc2-dbg_4.4.4-5_amd64.deb lib32objc2_4.4.4-5_amd64.deb lib32objc2-dbg_4.4.4-5_amd64.deb g++-4.4-multilib_4.4.4-5_amd64.deb g++-4.4_4.4.4-5_amd64.deb libstdc++6_4.4.4-5_amd64.deb lib32stdc++6_4.4.4-5_amd64.deb lib32stdc++6-4.4-dbg_4.4.4-5_amd64.deb libstdc++6-4.4-dev_4.4.4-5_amd64.deb libstdc++6-4.4-pic_4.4.4-5_amd64.deb libstdc++6-4.4-dbg_4.4.4-5_amd64.deb libgfortran3_4.4.4-5_amd64.deb libgfortran3-dbg_4.4.4-5_amd64.deb lib32gfortran3_4.4.4-5_amd64.deb lib32gfortran3-dbg_4.4.4-5_amd64.deb gfortran-4.4-multilib_4.4.4-5_amd64.deb gfortran-4.4_4.4.4-5_amd64.deb gcc-4.4-multilib_4.4.4-5_amd64.deb gcc-4.4_4.4.4-5_amd64.deb Greetings, Your Debian queue daemon (running on host ries.debian.org) -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1onvgi-0004jx...@ries.debian.org
gcc-4.4_4.4.4-5_amd64.changes ACCEPTED
Accepted: cpp-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/cpp-4.4_4.4.4-5_amd64.deb fixincludes_4.4.4-5_amd64.deb to main/g/gcc-4.4/fixincludes_4.4.4-5_amd64.deb g++-4.4-multilib_4.4.4-5_amd64.deb to main/g/gcc-4.4/g++-4.4-multilib_4.4.4-5_amd64.deb g++-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/g++-4.4_4.4.4-5_amd64.deb gcc-4.4-base_4.4.4-5_amd64.deb to main/g/gcc-4.4/gcc-4.4-base_4.4.4-5_amd64.deb gcc-4.4-locales_4.4.4-5_all.deb to main/g/gcc-4.4/gcc-4.4-locales_4.4.4-5_all.deb gcc-4.4-multilib_4.4.4-5_amd64.deb to main/g/gcc-4.4/gcc-4.4-multilib_4.4.4-5_amd64.deb gcc-4.4-source_4.4.4-5_all.deb to main/g/gcc-4.4/gcc-4.4-source_4.4.4-5_all.deb gcc-4.4_4.4.4-5.diff.gz to main/g/gcc-4.4/gcc-4.4_4.4.4-5.diff.gz gcc-4.4_4.4.4-5.dsc to main/g/gcc-4.4/gcc-4.4_4.4.4-5.dsc gcc-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/gcc-4.4_4.4.4-5_amd64.deb gfortran-4.4-multilib_4.4.4-5_amd64.deb to main/g/gcc-4.4/gfortran-4.4-multilib_4.4.4-5_amd64.deb gfortran-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/gfortran-4.4_4.4.4-5_amd64.deb gobjc++-4.4-multilib_4.4.4-5_amd64.deb to main/g/gcc-4.4/gobjc++-4.4-multilib_4.4.4-5_amd64.deb gobjc++-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/gobjc++-4.4_4.4.4-5_amd64.deb gobjc-4.4-multilib_4.4.4-5_amd64.deb to main/g/gcc-4.4/gobjc-4.4-multilib_4.4.4-5_amd64.deb gobjc-4.4_4.4.4-5_amd64.deb to main/g/gcc-4.4/gobjc-4.4_4.4.4-5_amd64.deb lib32gcc1-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gcc1-dbg_4.4.4-5_amd64.deb lib32gcc1_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gcc1_4.4.4-5_amd64.deb lib32gfortran3-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gfortran3-dbg_4.4.4-5_amd64.deb lib32gfortran3_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gfortran3_4.4.4-5_amd64.deb lib32gomp1-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gomp1-dbg_4.4.4-5_amd64.deb lib32gomp1_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32gomp1_4.4.4-5_amd64.deb lib32mudflap0-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32mudflap0-dbg_4.4.4-5_amd64.deb lib32mudflap0_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32mudflap0_4.4.4-5_amd64.deb lib32objc2-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32objc2-dbg_4.4.4-5_amd64.deb lib32objc2_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32objc2_4.4.4-5_amd64.deb lib32stdc++6-4.4-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32stdc++6-4.4-dbg_4.4.4-5_amd64.deb lib32stdc++6_4.4.4-5_amd64.deb to main/g/gcc-4.4/lib32stdc++6_4.4.4-5_amd64.deb libgcc1-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgcc1-dbg_4.4.4-5_amd64.deb libgcc1_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgcc1_4.4.4-5_amd64.deb libgfortran3-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgfortran3-dbg_4.4.4-5_amd64.deb libgfortran3_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgfortran3_4.4.4-5_amd64.deb libgomp1-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgomp1-dbg_4.4.4-5_amd64.deb libgomp1_4.4.4-5_amd64.deb to main/g/gcc-4.4/libgomp1_4.4.4-5_amd64.deb libmudflap0-4.4-dev_4.4.4-5_amd64.deb to main/g/gcc-4.4/libmudflap0-4.4-dev_4.4.4-5_amd64.deb libmudflap0-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libmudflap0-dbg_4.4.4-5_amd64.deb libmudflap0_4.4.4-5_amd64.deb to main/g/gcc-4.4/libmudflap0_4.4.4-5_amd64.deb libobjc2-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libobjc2-dbg_4.4.4-5_amd64.deb libobjc2_4.4.4-5_amd64.deb to main/g/gcc-4.4/libobjc2_4.4.4-5_amd64.deb libstdc++6-4.4-dbg_4.4.4-5_amd64.deb to main/g/gcc-4.4/libstdc++6-4.4-dbg_4.4.4-5_amd64.deb libstdc++6-4.4-dev_4.4.4-5_amd64.deb to main/g/gcc-4.4/libstdc++6-4.4-dev_4.4.4-5_amd64.deb libstdc++6-4.4-doc_4.4.4-5_all.deb to main/g/gcc-4.4/libstdc++6-4.4-doc_4.4.4-5_all.deb libstdc++6-4.4-pic_4.4.4-5_amd64.deb to main/g/gcc-4.4/libstdc++6-4.4-pic_4.4.4-5_amd64.deb libstdc++6_4.4.4-5_amd64.deb to main/g/gcc-4.4/libstdc++6_4.4.4-5_amd64.deb protoize_4.4.4-5_amd64.deb to main/g/gcc-4.4/protoize_4.4.4-5_amd64.deb Override entries for your package: cpp-4.4_4.4.4-5_amd64.deb - optional interpreters fixincludes_4.4.4-5_amd64.deb - optional devel g++-4.4-multilib_4.4.4-5_amd64.deb - optional devel g++-4.4_4.4.4-5_amd64.deb - optional devel gcc-4.4-base_4.4.4-5_amd64.deb - required libs gcc-4.4-locales_4.4.4-5_all.deb - optional devel gcc-4.4-multilib_4.4.4-5_amd64.deb - optional devel gcc-4.4-source_4.4.4-5_all.deb - optional devel gcc-4.4_4.4.4-5.dsc - source devel gcc-4.4_4.4.4-5_amd64.deb - optional devel gfortran-4.4-multilib_4.4.4-5_amd64.deb - optional devel gfortran-4.4_4.4.4-5_amd64.deb - optional devel gobjc++-4.4-multilib_4.4.4-5_amd64.deb - optional devel gobjc++-4.4_4.4.4-5_amd64.deb - optional devel gobjc-4.4-multilib_4.4.4-5_amd64.deb - optional devel gobjc-4.4_4.4.4-5_amd64.deb - optional devel lib32gcc1-dbg_4.4.4-5_amd64.deb - extra debug lib32gcc1_4.4.4-5_amd64.deb - extra libs lib32gfortran3-dbg_4.4.4-5_amd64.deb - extra debug lib32gfortran3_4.4.4-5_amd64.deb - optional libs lib32gomp1-dbg_4.4.4-5_amd64.deb - extra debug lib32gomp1_4.4.4-5_amd64.deb - optional libs lib32mudflap0-dbg_4.4.4-5_amd64.deb - extra debug lib32mudflap0_4.4
gcc-4.4 override disparity
There are disparities between your recently accepted upload and the override file for the following file(s): lib32gcc1_4.4.4-5_amd64.deb: package says priority is optional, override says extra. Please note that a list of new sections were recently added to the archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell, httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video, xfce, zope. At this time a script was used to reclassify packages into these sections. If this is the case, please only reply to this email if the new section is inappropriate, otherwise please update your package at the next upload. Either the package or the override file is incorrect. If you think the override is correct and the package wrong please fix the package so that this disparity is fixed in the next upload. If you feel the override is incorrect then please file a bug against ftp.debian.org and explain why. Please INCLUDE the list of packages as seen above, or we won't be able to deal with your request due to missing information. Please make sure that the subject of the bug you file follows the following format: Subject: override: BINARY1:section/priority, [...], BINARYX:section/priority Include the justification for the change in the body of the mail please. [NB: this is an automatically generated mail; if you already filed a bug and have not received a response yet, please ignore this mail. Your bug needs to be processed by a human and will be in due course, but until then the installer will send these automated mails; sorry.] -- Debian distribution maintenance software (This message was generated automatically; if you believe that there is a problem with it please contact the archive administrators by mailing ftpmas...@debian.org) -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1onvlh-0005iz...@ries.debian.org
Bug#584308: marked as done (g++-4.4: Please include patch preventing dynamic_cast crash)
for GNU Objective-C applications (32 bit debug sy lib32stdc++6 - The GNU Standard C++ Library v3 (32 bit Version) lib32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) lib64gcc1 - GCC support library (64bit) lib64gcc1-dbg - GCC support library (debug symbols) lib64gfortran3 - Runtime library for GNU Fortran applications (64bit) lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols lib64gomp1 - GCC OpenMP (GOMP) support library (64bit) lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols) lib64mudflap0 - GCC mudflap shared support libraries (64bit) lib64mudflap0-dbg - GCC mudflap shared support libraries (64 bit debug symbols) lib64objc2 - Runtime library for GNU Objective-C applications (64bit) lib64objc2-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy lib64stdc++6 - The GNU Standard C++ Library v3 (64bit) lib64stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) libgcc1- GCC support library libgcc1-dbg - GCC support library (debug symbols) libgcc2- GCC support library libgcc2-dbg - GCC support library (debug symbols) libgcc4- GCC support library libgcc4-dbg - GCC support library (debug symbols) libgfortran3 - Runtime library for GNU Fortran applications libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols) libgomp1 - GCC OpenMP (GOMP) support library libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols) libmudflap0 - GCC mudflap shared support libraries libmudflap0-4.4-dev - GCC mudflap support libraries (development files) libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols) libn32gcc1 - GCC support library (n32) libn32gcc1-dbg - GCC support library (debug symbols) libn32gfortran3 - Runtime library for GNU Fortran applications (n32) libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols) libn32gomp1 - GCC OpenMP (GOMP) support library (n32) libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols) libn32mudflap0 - GCC mudflap shared support libraries (n32) libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols) libn32objc2 - Runtime library for GNU Objective-C applications (n32) libn32objc2-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo libn32stdc++6 - The GNU Standard C++ Library v3 (n32) libn32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) libobjc2 - Runtime library for GNU Objective-C applications libobjc2-dbg - Runtime library for GNU Objective-C applications (debug symbols) libstdc++6 - The GNU Standard C++ Library v3 libstdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) libstdc++6-4.4-dev - The GNU Standard C++ Library v3 (development files) libstdc++6-4.4-doc - The GNU Standard C++ Library v3 (documentation files) libstdc++6-4.4-pic - The GNU Standard C++ Library v3 (shared library subset kit) protoize - Create/remove ANSI prototypes from C code Closes: 584308 584610 Changes: gcc-4.4 (4.4.4-5) unstable; urgency=low . [ Matthias Klose ] . * Update to SVN 20100612 from the gcc-4_4-branch (r160657). - Fix PR target/44169, PR target/44481, PR target/44075, PR other/43838, PR libstdc++/32499, PR libgcj/44216. * debian/patches/libstdc++-pic.diff: Fix installation for cross builds. * Update libsupc++/vmi_class_type_info.cc from the 4.5 branch. Closes: #584308. * Export long double versions of "C" math library for arm-linux-gnueabi, m68k-linux-gnu (ColdFire), mips*-linux-gnu (o32 ABI), sh*-linux-gnu (not 32 bit). Merge the libstdc++-*-ldbl-compat.diff patches. * Remove the backport for the plugin support. . [ Aurelien Jarno ] * libstdc++-mips-ldbl-compat.diff: On MIPS provide the long double versions of "C" math functions in libstdc++ as we need to keep the ABI. Closes: #584610. Checksums-Sha1: ad296e6eb0156bf40a167b0430cc5d39f1c0eae0 3563 gcc-4.4_4.4.4-5.dsc 3bc932b8de8318846f6b629b817f633cbd484302 665298 gcc-4.4_4.4.4-5.diff.gz 62d70be2404905aef4ef0f4fbeb07fc850f31487 50213828 gcc-4.4-source_4.4.4-5_all.deb fcdd0ccd8cdd8d81c784319d63b14f0d359e507f 16380900 libstdc++6-4.4-doc_4.4.4-5_all.deb bdad4440c967e9447e1ff3f12290c09f275b3748 2298582 gcc-4.4-locales_4.4.4-5_all.deb 73ecf13d8fd00932cc00d3d8d5ac2240d3ce4f3b 117438 gcc-4.4-base_4.4.4-5_amd64.deb cd21997875e3717964408c3df2789880a1fb5a68 45050 libgcc1_4.4.4-5_amd64.deb 5e96d432497cab69d919b68b9270ee00f73359ce 83120 libgcc1-dbg_4.4.4-5_amd64.deb 115533216ba571d984772596c4b90ed12258b20a 55202 lib32gcc1_4.4.4-5_amd64.deb 5e0b5b061625ee774524bdbf0aed3af03bf869e9 77968 lib32gcc1-dbg_4.4.4-5_amd64.deb 13104d325d578c77be6dfd610c9e6f6a3f1db61c 25294 libgomp1_4.4.4-5_amd64.deb fd6f0eda97e8bc2b05cbb036d86e19780066e8a5 58830 libgomp1-dbg_4.4.4-5_amd64.deb 17426b2f0e0051f
Bug#584610: marked as done ([mips] gcc-4.4 build failure after upgrade to eglibc-2.11)
libgcc4-dbg - GCC support library (debug symbols) libgfortran3 - Runtime library for GNU Fortran applications libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols) libgomp1 - GCC OpenMP (GOMP) support library libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols) libmudflap0 - GCC mudflap shared support libraries libmudflap0-4.4-dev - GCC mudflap support libraries (development files) libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols) libn32gcc1 - GCC support library (n32) libn32gcc1-dbg - GCC support library (debug symbols) libn32gfortran3 - Runtime library for GNU Fortran applications (n32) libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols) libn32gomp1 - GCC OpenMP (GOMP) support library (n32) libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols) libn32mudflap0 - GCC mudflap shared support libraries (n32) libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols) libn32objc2 - Runtime library for GNU Objective-C applications (n32) libn32objc2-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo libn32stdc++6 - The GNU Standard C++ Library v3 (n32) libn32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) libobjc2 - Runtime library for GNU Objective-C applications libobjc2-dbg - Runtime library for GNU Objective-C applications (debug symbols) libstdc++6 - The GNU Standard C++ Library v3 libstdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files) libstdc++6-4.4-dev - The GNU Standard C++ Library v3 (development files) libstdc++6-4.4-doc - The GNU Standard C++ Library v3 (documentation files) libstdc++6-4.4-pic - The GNU Standard C++ Library v3 (shared library subset kit) protoize - Create/remove ANSI prototypes from C code Closes: 584308 584610 Changes: gcc-4.4 (4.4.4-5) unstable; urgency=low . [ Matthias Klose ] . * Update to SVN 20100612 from the gcc-4_4-branch (r160657). - Fix PR target/44169, PR target/44481, PR target/44075, PR other/43838, PR libstdc++/32499, PR libgcj/44216. * debian/patches/libstdc++-pic.diff: Fix installation for cross builds. * Update libsupc++/vmi_class_type_info.cc from the 4.5 branch. Closes: #584308. * Export long double versions of "C" math library for arm-linux-gnueabi, m68k-linux-gnu (ColdFire), mips*-linux-gnu (o32 ABI), sh*-linux-gnu (not 32 bit). Merge the libstdc++-*-ldbl-compat.diff patches. * Remove the backport for the plugin support. . [ Aurelien Jarno ] * libstdc++-mips-ldbl-compat.diff: On MIPS provide the long double versions of "C" math functions in libstdc++ as we need to keep the ABI. Closes: #584610. Checksums-Sha1: ad296e6eb0156bf40a167b0430cc5d39f1c0eae0 3563 gcc-4.4_4.4.4-5.dsc 3bc932b8de8318846f6b629b817f633cbd484302 665298 gcc-4.4_4.4.4-5.diff.gz 62d70be2404905aef4ef0f4fbeb07fc850f31487 50213828 gcc-4.4-source_4.4.4-5_all.deb fcdd0ccd8cdd8d81c784319d63b14f0d359e507f 16380900 libstdc++6-4.4-doc_4.4.4-5_all.deb bdad4440c967e9447e1ff3f12290c09f275b3748 2298582 gcc-4.4-locales_4.4.4-5_all.deb 73ecf13d8fd00932cc00d3d8d5ac2240d3ce4f3b 117438 gcc-4.4-base_4.4.4-5_amd64.deb cd21997875e3717964408c3df2789880a1fb5a68 45050 libgcc1_4.4.4-5_amd64.deb 5e96d432497cab69d919b68b9270ee00f73359ce 83120 libgcc1-dbg_4.4.4-5_amd64.deb 115533216ba571d984772596c4b90ed12258b20a 55202 lib32gcc1_4.4.4-5_amd64.deb 5e0b5b061625ee774524bdbf0aed3af03bf869e9 77968 lib32gcc1-dbg_4.4.4-5_amd64.deb 13104d325d578c77be6dfd610c9e6f6a3f1db61c 25294 libgomp1_4.4.4-5_amd64.deb fd6f0eda97e8bc2b05cbb036d86e19780066e8a5 58830 libgomp1-dbg_4.4.4-5_amd64.deb 17426b2f0e0051f1936ca72eec34b1bc9ceef364 24678 lib32gomp1_4.4.4-5_amd64.deb cbac6d8ffcd3ab54d9659dacb67e76a149817b55 62304 lib32gomp1-dbg_4.4.4-5_amd64.deb c9a276a6e3d9c591bf9b66df42c7a440c131168d 3878160 cpp-4.4_4.4.4-5_amd64.deb e2b86545a3d3df3424227bea81a8ff6453f4b023 46868 protoize_4.4.4-5_amd64.deb 4e7abc2ee84c79d64b6c493944774a17840be13d 62508 fixincludes_4.4.4-5_amd64.deb 1e224c73cb2b6e8abaa639690a6fef7b7fd2af63 215092 libmudflap0-4.4-dev_4.4.4-5_amd64.deb 8557b4b328a8de300070e2205f426129ff98ed5f 98136 libmudflap0_4.4.4-5_amd64.deb 815790971e6b26efc58a794dd47922edbbffc935 122342 libmudflap0-dbg_4.4.4-5_amd64.deb 9ecbe85ac4914a28715da8e252da4aa2361b969e 81934 lib32mudflap0_4.4.4-5_amd64.deb 42a543d41cf6faf31d781501eae006cd00fccc2a 119964 lib32mudflap0-dbg_4.4.4-5_amd64.deb a09ec7bc497d94037797d89793b5e03aeb7ddd3d 872 gobjc++-4.4-multilib_4.4.4-5_amd64.deb a6b9f38f1a64bb2af42804be45557d2b0f0d751a 4154080 gobjc++-4.4_4.4.4-5_amd64.deb 31b4c787b7a32c3cb167f4c54699587ec98951a7 167646 gobjc-4.4-multilib_4.4.4-5_amd64.deb 16814741bddc5fbb4d9a2a1dd1a7a60441737aa7 4034194 gobjc-4.4_4.4.4-5_amd64.deb 99d3c493f4c8d878baf2b7bf9dfce9efd6394c63 160572 libobjc2_4.4.4-5_amd64.deb 1e031c58cd6e291a3f5460b84cab91f42919351c 27853