Your message dated Thu, 27 May 2010 23:19:34 +0000
with message-id <e1ohmmq-00060o...@ries.debian.org>
and subject line Bug#579780: fixed in gcc-4.5 4.5.0-4
has caused the Debian Bug report #579780,
regarding powerpcspe: Preliminary architecture port and minor bugfix
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.)
--
579780: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=579780
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.4
Version: 4.4.2-9
Severity: normal
Tags: sid patch
The 'powerpcspe' architecture is a binary-incompatible variant of
PowerPC/POWER designed and supported by FreeScale and IBM. It is also
known under the trade names "e500"/"MPC8500" and "e200"/"MPC5xx".
This architecture was added to dpkg in commit feb5792 on 2010/04/30:
http://git.debian.org/?p=dpkg/dpkg.git;a=commitdiff;h=feb5792
Additional information can be found at:
http://en.wikipedia.org/wiki/PowerPC_e500
http://en.wikipedia.org/wiki/PowerPC_e200
In particular, the 'powerpcspe' architecture lacks the classic FPU with
dedicated FPRs found on most other PowerPC systems. It is replaced with
a set of "SPE" instructions which perform floating-point operations on
the integer registers.
In an unfortunate choice of architecture design, the instructions used
for the "SPE" operations overlap with those for the AltiVec unit on most
other modern PowerPC cores.
The "e500v2"-series chips have 64-bit GPRs, where the high 32-bits are
accesible only via the special "SPE" instructions, allowing them to make
efficient use of the "double" datatype.
The relative rare "e500v1"-series chips have only 32-bit GPRs, and
require software traps and emulation to support native "double".
The "e200z3" and "e200z6" chips have no support for floating point at
all, but with software traps and emulation are binary-compatible with
the "e500"-series chips.
The Debian port to this architecture specifically chooses to optimize
for the higher-end chips (e500v2), as most of the others are targeted at
automotive applications or no longer in production.
GCC by default builds correctly with full support for the e500v2 as long
as the following options are passed to "configure":
--with-cpu=8548
--enable-e500_double
--with-long-double-128
The only changes needed are to extend a few matches on "powerpc ppc64"
to also match "powerpcspe" to ensure that we include essential headers.
One of those headers in particular (spe.h) is necessary to successfully
build EGLIBC's floating-point support.
At this time the 'powerpcspe' architecture port is still very much an
unofficial port. While we hope that will change in the future, it is
entirely possible that the embedded niche of the processor will make
such an official Debian port problematic.
Signed-off-by: Kyle Moffett <kyle.d.moff...@boeing.com>
---
debian/rules.d/binary-gcc-cross.mk | 4 ++--
debian/rules.d/binary-gcc.mk | 2 +-
debian/rules.d/binary-java.mk | 2 +-
debian/rules2 | 4 ++++
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/debian/rules.d/binary-gcc-cross.mk
b/debian/rules.d/binary-gcc-cross.mk
index a39e84f..b642ba2 100644
--- a/debian/rules.d/binary-gcc-cross.mk
+++ b/debian/rules.d/binary-gcc-cross.mk
@@ -71,8 +71,8 @@ ifeq ($(DEB_TARGET_ARCH),m68k)
files_gcc += $(gcc_lib_dir)/include/math-68881.h
endif
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
- files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h}
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
+ files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
usr_doc_files = debian/README.Bugs \
diff --git a/debian/rules.d/binary-gcc.mk b/debian/rules.d/binary-gcc.mk
index 55af73b..20e36ff 100644
--- a/debian/rules.d/binary-gcc.mk
+++ b/debian/rules.d/binary-gcc.mk
@@ -74,7 +74,7 @@ ifeq ($(DEB_HOST_ARCH),m68k)
files_gcc += $(gcc_lib_dir)/include/math-68881.h
endif
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
diff --git a/debian/rules.d/binary-java.mk b/debian/rules.d/binary-java.mk
index 7f0249a..f2b9f94 100644
--- a/debian/rules.d/binary-java.mk
+++ b/debian/rules.d/binary-java.mk
@@ -236,7 +236,7 @@ ifeq ($(with_standalone_gcj),yes)
files_gcj += $(gcc_lib_dir)/include/math-68881.h
endif
- ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
files_gcj += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
diff --git a/debian/rules2 b/debian/rules2
index 252c671..01bbbca 100644
--- a/debian/rules2
+++ b/debian/rules2
@@ -260,6 +260,10 @@ ifneq (,$(findstring powerpc-linux,$(DEB_TARGET_GNU_TYPE)))
endif
endif
+ifeq ($(findstring powerpcspe,$(DEB_TARGET_ARCH)),powerpcspe)
+ CONFARGS += --with-cpu=8548 --enable-e500_double --with-long-double-128
+endif
+
ifneq (,$(findstring softfloat,$(DEB_TARGET_GNU_CPU)))
CONFARGS += --with-float=soft
endif
--
1.7.0
--- Begin Message ---
The 'powerpcspe' architecture is a binary-incompatible variant of
PowerPC/POWER designed and supported by FreeScale and IBM. It is also
known under the trade names "e500"/"MPC8500" and "e200"/"MPC5xx".
This architecture was added to dpkg in commit feb5792 on 2010/04/30:
http://git.debian.org/?p=dpkg/dpkg.git;a=commitdiff;h=feb5792
Additional information can be found at:
http://en.wikipedia.org/wiki/PowerPC_e500
http://en.wikipedia.org/wiki/PowerPC_e200
In particular, the 'powerpcspe' architecture lacks the classic FPU with
dedicated FPRs found on most other PowerPC systems. It is replaced with
a set of "SPE" instructions which perform floating-point operations on
the integer registers.
In an unfortunate choice of architecture design, the instructions used
for the "SPE" operations overlap with those for the AltiVec unit on most
other modern PowerPC cores.
The "e500v2"-series chips have 64-bit GPRs, where the high 32-bits are
accesible only via the special "SPE" instructions, allowing them to make
efficient use of the "double" datatype.
The relative rare "e500v1"-series chips have only 32-bit GPRs, and
require software traps and emulation to support native "double".
The "e200z3" and "e200z6" chips have no support for floating point at
all, but with software traps and emulation are binary-compatible with
the "e500"-series chips.
The Debian port to this architecture specifically chooses to optimize
for the higher-end chips (e500v2), as most of the others are targeted at
automotive applications or no longer in production.
GCC by default builds correctly with full support for the e500v2 as long
as the following options are passed to "configure":
--with-cpu=8548
--enable-e500_double
--with-long-double-128
The only changes needed are to extend a few matches on "powerpc ppc64"
to also match "powerpcspe" to ensure that we include essential headers.
One of those headers in particular (spe.h) is necessary to successfully
build EGLIBC's floating-point support.
At this time the 'powerpcspe' architecture port is still very much an
unofficial port. While we hope that will change in the future, it is
entirely possible that the embedded niche of the processor will make
such an official Debian port problematic.
Signed-off-by: Kyle Moffett <kyle.d.moff...@boeing.com>
---
debian/rules.d/binary-gcc-cross.mk | 4 ++--
debian/rules.d/binary-gcc.mk | 2 +-
debian/rules.d/binary-java.mk | 2 +-
debian/rules2 | 4 ++++
4 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/debian/rules.d/binary-gcc-cross.mk
b/debian/rules.d/binary-gcc-cross.mk
index a39e84f..b642ba2 100644
--- a/debian/rules.d/binary-gcc-cross.mk
+++ b/debian/rules.d/binary-gcc-cross.mk
@@ -71,8 +71,8 @@ ifeq ($(DEB_TARGET_ARCH),m68k)
files_gcc += $(gcc_lib_dir)/include/math-68881.h
endif
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
- files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h}
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
+ files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
usr_doc_files = debian/README.Bugs \
diff --git a/debian/rules.d/binary-gcc.mk b/debian/rules.d/binary-gcc.mk
index 55af73b..20e36ff 100644
--- a/debian/rules.d/binary-gcc.mk
+++ b/debian/rules.d/binary-gcc.mk
@@ -74,7 +74,7 @@ ifeq ($(DEB_HOST_ARCH),m68k)
files_gcc += $(gcc_lib_dir)/include/math-68881.h
endif
-ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
files_gcc += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
diff --git a/debian/rules.d/binary-java.mk b/debian/rules.d/binary-java.mk
index 7f0249a..f2b9f94 100644
--- a/debian/rules.d/binary-java.mk
+++ b/debian/rules.d/binary-java.mk
@@ -236,7 +236,7 @@ ifeq ($(with_standalone_gcj),yes)
files_gcj += $(gcc_lib_dir)/include/math-68881.h
endif
- ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64))
+ ifeq ($(DEB_TARGET_ARCH),$(findstring $(DEB_TARGET_ARCH),powerpc ppc64
powerpcspe))
files_gcj += $(gcc_lib_dir)/include/{altivec.h,ppc-asm.h,spe.h}
endif
diff --git a/debian/rules2 b/debian/rules2
index 252c671..01bbbca 100644
--- a/debian/rules2
+++ b/debian/rules2
@@ -260,6 +260,10 @@ ifneq (,$(findstring powerpc-linux,$(DEB_TARGET_GNU_TYPE)))
endif
endif
+ifeq ($(findstring powerpcspe,$(DEB_TARGET_ARCH)),powerpcspe)
+ CONFARGS += --with-cpu=8548 --enable-e500_double --with-long-double-128
+endif
+
ifneq (,$(findstring softfloat,$(DEB_TARGET_GNU_CPU)))
CONFARGS += --with-float=soft
endif
--
1.7.0
--- End Message ---
--- End Message ---
--- Begin Message ---
Source: gcc-4.5
Source-Version: 4.5.0-4
We believe that the bug you reported is fixed in the latest version of
gcc-4.5, which is due to be installed in the Debian FTP archive:
cpp-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/cpp-4.5_4.5.0-4_i386.deb
fixincludes_4.5.0-4_i386.deb
to main/g/gcc-4.5/fixincludes_4.5.0-4_i386.deb
g++-4.5-multilib_4.5.0-4_i386.deb
to main/g/gcc-4.5/g++-4.5-multilib_4.5.0-4_i386.deb
g++-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/g++-4.5_4.5.0-4_i386.deb
gcc-4.5-base_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcc-4.5-base_4.5.0-4_i386.deb
gcc-4.5-locales_4.5.0-4_all.deb
to main/g/gcc-4.5/gcc-4.5-locales_4.5.0-4_all.deb
gcc-4.5-multilib_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcc-4.5-multilib_4.5.0-4_i386.deb
gcc-4.5-plugin-dev_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcc-4.5-plugin-dev_4.5.0-4_i386.deb
gcc-4.5-source_4.5.0-4_all.deb
to main/g/gcc-4.5/gcc-4.5-source_4.5.0-4_all.deb
gcc-4.5_4.5.0-4.diff.gz
to main/g/gcc-4.5/gcc-4.5_4.5.0-4.diff.gz
gcc-4.5_4.5.0-4.dsc
to main/g/gcc-4.5/gcc-4.5_4.5.0-4.dsc
gcc-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcc-4.5_4.5.0-4_i386.deb
gcj-4.5-base_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcj-4.5-base_4.5.0-4_i386.deb
gcj-4.5-jdk_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcj-4.5-jdk_4.5.0-4_i386.deb
gcj-4.5-jre-headless_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcj-4.5-jre-headless_4.5.0-4_i386.deb
gcj-4.5-jre-lib_4.5.0-4_all.deb
to main/g/gcc-4.5/gcj-4.5-jre-lib_4.5.0-4_all.deb
gcj-4.5-jre_4.5.0-4_i386.deb
to main/g/gcc-4.5/gcj-4.5-jre_4.5.0-4_i386.deb
gcj-4.5-source_4.5.0-4_all.deb
to main/g/gcc-4.5/gcj-4.5-source_4.5.0-4_all.deb
gfortran-4.5-multilib_4.5.0-4_i386.deb
to main/g/gcc-4.5/gfortran-4.5-multilib_4.5.0-4_i386.deb
gfortran-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/gfortran-4.5_4.5.0-4_i386.deb
gobjc++-4.5-multilib_4.5.0-4_i386.deb
to main/g/gcc-4.5/gobjc++-4.5-multilib_4.5.0-4_i386.deb
gobjc++-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/gobjc++-4.5_4.5.0-4_i386.deb
gobjc-4.5-multilib_4.5.0-4_i386.deb
to main/g/gcc-4.5/gobjc-4.5-multilib_4.5.0-4_i386.deb
gobjc-4.5_4.5.0-4_i386.deb
to main/g/gcc-4.5/gobjc-4.5_4.5.0-4_i386.deb
lib64gcc1-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gcc1-dbg_4.5.0-4_i386.deb
lib64gcc1_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gcc1_4.5.0-4_i386.deb
lib64gfortran3-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gfortran3-dbg_4.5.0-4_i386.deb
lib64gfortran3_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gfortran3_4.5.0-4_i386.deb
lib64gomp1-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gomp1-dbg_4.5.0-4_i386.deb
lib64gomp1_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64gomp1_4.5.0-4_i386.deb
lib64mudflap0-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64mudflap0-dbg_4.5.0-4_i386.deb
lib64mudflap0_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64mudflap0_4.5.0-4_i386.deb
lib64objc2-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64objc2-dbg_4.5.0-4_i386.deb
lib64objc2_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64objc2_4.5.0-4_i386.deb
lib64stdc++6-4.5-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64stdc++6-4.5-dbg_4.5.0-4_i386.deb
lib64stdc++6_4.5.0-4_i386.deb
to main/g/gcc-4.5/lib64stdc++6_4.5.0-4_i386.deb
libgcc1-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcc1-dbg_4.5.0-4_i386.deb
libgcc1_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcc1_4.5.0-4_i386.deb
libgcj-doc_4.5.0-4_all.deb
to main/g/gcc-4.5/libgcj-doc_4.5.0-4_all.deb
libgcj11-awt_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcj11-awt_4.5.0-4_i386.deb
libgcj11-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcj11-dbg_4.5.0-4_i386.deb
libgcj11-dev_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcj11-dev_4.5.0-4_i386.deb
libgcj11_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgcj11_4.5.0-4_i386.deb
libgfortran3-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgfortran3-dbg_4.5.0-4_i386.deb
libgfortran3_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgfortran3_4.5.0-4_i386.deb
libgomp1-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgomp1-dbg_4.5.0-4_i386.deb
libgomp1_4.5.0-4_i386.deb
to main/g/gcc-4.5/libgomp1_4.5.0-4_i386.deb
libmudflap0-4.5-dev_4.5.0-4_i386.deb
to main/g/gcc-4.5/libmudflap0-4.5-dev_4.5.0-4_i386.deb
libmudflap0-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libmudflap0-dbg_4.5.0-4_i386.deb
libmudflap0_4.5.0-4_i386.deb
to main/g/gcc-4.5/libmudflap0_4.5.0-4_i386.deb
libobjc2-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libobjc2-dbg_4.5.0-4_i386.deb
libobjc2_4.5.0-4_i386.deb
to main/g/gcc-4.5/libobjc2_4.5.0-4_i386.deb
libstdc++6-4.5-dbg_4.5.0-4_i386.deb
to main/g/gcc-4.5/libstdc++6-4.5-dbg_4.5.0-4_i386.deb
libstdc++6-4.5-dev_4.5.0-4_i386.deb
to main/g/gcc-4.5/libstdc++6-4.5-dev_4.5.0-4_i386.deb
libstdc++6-4.5-doc_4.5.0-4_all.deb
to main/g/gcc-4.5/libstdc++6-4.5-doc_4.5.0-4_all.deb
libstdc++6-4.5-pic_4.5.0-4_i386.deb
to main/g/gcc-4.5/libstdc++6-4.5-pic_4.5.0-4_i386.deb
libstdc++6_4.5.0-4_i386.deb
to main/g/gcc-4.5/libstdc++6_4.5.0-4_i386.deb
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 579...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Matthias Klose <d...@debian.org> (supplier of updated gcc-4.5 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...@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.8
Date: Thu, 27 May 2010 17:52:15 +0200
Source: gcc-4.5
Binary: gcc-4.5-base gcj-4.5-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg
libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1
libn32gcc1-dbg gcc-4.5 gcc-4.5-multilib gcc-4.5-plugin-dev gcc-4.5-hppa64
gcc-4.5-spu g++-4.5-spu gfortran-4.5-spu cpp-4.5 gcc-4.5-locales g++-4.5
g++-4.5-multilib libmudflap0 libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg
lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 libn32mudflap0-dbg
libmudflap0-4.5-dev libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1
lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg gobjc++-4.5 gobjc++-4.5-multilib
gobjc-4.5 gobjc-4.5-multilib libobjc2 libobjc2-dbg lib64objc2 lib64objc2-dbg
lib32objc2 lib32objc2-dbg libn32objc2 libn32objc2-dbg gfortran-4.5
gfortran-4.5-multilib libgfortran3 libgfortran3-dbg lib64gfortran3
lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3
libn32gfortran3-dbg gcj-4.5-jdk gcj-4.5-jre-headless gcj-4.5-jre libgcj11
gcj-4.5-jre-lib libgcj11-awt
libgcj11-dev libgcj11-dbg gcj-4.5-source libgcj-doc libstdc++6 lib32stdc++6
lib64stdc++6 libn32stdc++6 libstdc++6-4.5-dev libstdc++6-4.5-pic
libstdc++6-4.5-dbg lib32stdc++6-4.5-dbg lib64stdc++6-4.5-dbg
libn32stdc++6-4.5-dbg libstdc++6-4.5-doc gcc-4.5-soft-float fixincludes
gcc-4.5-source
Architecture: source all i386
Version: 4.5.0-4
Distribution: experimental
Urgency: low
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <d...@debian.org>
Description:
cpp-4.5 - The GNU C preprocessor
fixincludes - Fix non-ANSI header files
g++-4.5 - The GNU C++ compiler
g++-4.5-multilib - The GNU C++ compiler (multilib files)
g++-4.5-spu - SPU cross-compiler (C++ compiler)
gcc-4.5 - The GNU C compiler
gcc-4.5-base - The GNU Compiler Collection (base package)
gcc-4.5-hppa64 - The GNU C compiler (cross compiler for hppa64)
gcc-4.5-locales - The GNU C compiler (native language support files)
gcc-4.5-multilib - The GNU C compiler (multilib files)
gcc-4.5-plugin-dev - Files for GNU GCC plugin development.
gcc-4.5-soft-float - The soft-floating-point gcc libraries (arm)
gcc-4.5-source - Source of the GNU Compiler Collection
gcc-4.5-spu - SPU cross-compiler (preprocessor and C compiler)
gcj-4.5-base - The GNU Compiler Collection (gcj base package)
gcj-4.5-jdk - gcj and classpath development tools for Java(TM)
gcj-4.5-jre - Java runtime environment using GIJ/classpath
gcj-4.5-jre-headless - Java runtime environment using GIJ/classpath (headless
version)
gcj-4.5-jre-lib - Java runtime library for use with gcj (jar files)
gcj-4.5-source - GCJ java sources for use in IDEs like eclipse and netbeans
gfortran-4.5 - The GNU Fortran 95 compiler
gfortran-4.5-multilib - The GNU Fortran 95 compiler (multilib files)
gfortran-4.5-spu - SPU cross-compiler (Fortran compiler)
gobjc++-4.5 - The GNU Objective-C++ compiler
gobjc++-4.5-multilib - The GNU Objective-C++ compiler (multilib files)
gobjc-4.5 - The GNU Objective-C compiler
gobjc-4.5-multilib - The GNU Objective-C compiler (multilib files)
lib32gcc1 - GCC support library (32 bit Version)
lib32gcc1-dbg - GCC support library (debug symbols)
lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit
debug symbol
lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
lib32mudflap0 - GCC mudflap shared support libraries (32bit)
lib32mudflap0-dbg - GCC mudflap shared support libraries (32 bit debug symbols)
lib32objc2 - Runtime library for GNU Objective-C applications (32bit)
lib32objc2-dbg - Runtime library for GNU Objective-C applications (32 bit
debug sy
lib32stdc++6 - The GNU Standard C++ Library v3 (32 bit Version)
lib32stdc++6-4.5-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.5-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)
libgcj-doc - libgcj API documentation and example programs
libgcj11 - Java runtime library for use with gcj
libgcj11-awt - AWT peer runtime libraries for use with gcj
libgcj11-dbg - Debugging symbols for libraries provided in libgcj11-dev
libgcj11-dev - Java development headers for use with gcj
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.5-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.5-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.5-dbg - The GNU Standard C++ Library v3 (debugging files)
libstdc++6-4.5-dev - The GNU Standard C++ Library v3 (development files)
libstdc++6-4.5-doc - The GNU Standard C++ Library v3 (documentation files)
libstdc++6-4.5-pic - The GNU Standard C++ Library v3 (shared library subset
kit)
Closes: 579779 579780
Changes:
gcc-4.5 (4.5.0-4) experimental; urgency=low
.
* Update to SVN 20100527 (r159910) from the gcc-4_5-branch. Fixes:
PR rtl-optimization/44164, PR middle-end/44069, PR target/44199,
PR lto/44196, PR target/43733, PR target/44245, PR target/43869,
PR debug/44223, PR tree-optimization/44038, PR tree-optimization/43949,
PR debug/44205, PR debug/44178, PR bootstrap/43870, PR target/44202,
PR target/44074, PR lto/43455, PR lto/42653, PR lto/42425, PR lto/43080,
PR lto/43946, PR c++/43382, PR c++/41510, PR c++/44193, PR c++/44157,
PR c++/44158, PR lto/44256, PR libstdc++/44190.
.
[ Matthias Klose ]
.
* Enable multilibs again on powerpcspe. Closes: #579780.
* Fix setting CC for REVERSE_CROSS build (host == target,host != build).
Closes: #579779.
* Fix setting biarch_cpu macro.
* Don't bother with un-normalized paths in .la files, just remove them.
* debian/locale-gen: Update locales needed for the libstdc++-v3 testsuite.
* If libstdc++6 is built from newer gcc-4.x source, run the libstdc++-v3
testsuite against the installed lib too.
.
[ Aurelien Jarno ]
.
* Fix $(distrelease) on non-official archives. Fix powerpcspe, sh4 and
sparc64 builds.
Checksums-Sha1:
a336b8ebcffcb8ca3aa3b5583b38a87eb0703630 4449 gcc-4.5_4.5.0-4.dsc
fe347b15dfa50321e037bc62396feea53b81688e 3047666 gcc-4.5_4.5.0-4.diff.gz
2e0c354c009cbe5619eb3471bc94e3307b54781a 54844988
gcc-4.5-source_4.5.0-4_all.deb
619c8f67592dc88f49c6f531023bb8f79778027c 10478256
gcj-4.5-jre-lib_4.5.0-4_all.deb
bff350120ffe782f188ff3c2717a84a0ef8ebf16 12328912
gcj-4.5-source_4.5.0-4_all.deb
0e09a130759f57c1e786951f1b8889b4c3c9850c 43818460 libgcj-doc_4.5.0-4_all.deb
c5518e20ccf5efb416926195c320654639280607 3554330
libstdc++6-4.5-doc_4.5.0-4_all.deb
8cb23521d675595557e6e9bf74f8d7d3500f77ce 2310242
gcc-4.5-locales_4.5.0-4_all.deb
7a24dd25e4761816d6e82b34e9016c3255dd5db7 116766 gcc-4.5-base_4.5.0-4_i386.deb
ad0a3823a7d9312b4b2b2491484b0af3c3502bf2 52308 libgcc1_4.5.0-4_i386.deb
c89370ed4fdce501e213b570d55501c4aaa7e321 101626 libgcc1-dbg_4.5.0-4_i386.deb
96a970a34bf33b239637881371bff6b5d9dcbeac 43410 lib64gcc1_4.5.0-4_i386.deb
1177c40c48f65c1571cafcff72f602ae06a277d2 98040 lib64gcc1-dbg_4.5.0-4_i386.deb
7854e2dceccbf78b5c7a62032d25f1e7846e4671 23478 libgomp1_4.5.0-4_i386.deb
02d2a04e0ea1ce04a1d30a7c97165a1d78995942 66924 libgomp1-dbg_4.5.0-4_i386.deb
d079e37fabcf8f9c4037e9864316a99c65668b18 25786 lib64gomp1_4.5.0-4_i386.deb
8d60285b14fe18f2067c773016ae72cecff29c0d 64898 lib64gomp1-dbg_4.5.0-4_i386.deb
c3ad71dd521dacc433f5111cccd994c1fa4766f6 4727416 cpp-4.5_4.5.0-4_i386.deb
b048dc28acd1507de82bf02bb17c0a98a638c7f6 59852 fixincludes_4.5.0-4_i386.deb
03a6eff5f3312400256f773d59b80bb75c80014b 214408
libmudflap0-4.5-dev_4.5.0-4_i386.deb
39635e57f288c8f565e83d62594eadf99a27a411 81806 libmudflap0_4.5.0-4_i386.deb
569f486a716fd6affacdf6901a8fb7f3bc943e10 127328
libmudflap0-dbg_4.5.0-4_i386.deb
bd3deb7c301cfc36d2e8af45791b031b1d34db82 98838 lib64mudflap0_4.5.0-4_i386.deb
e105c1cdf3a50ff54f6d538787ebe7f977427a67 136120
lib64mudflap0-dbg_4.5.0-4_i386.deb
fda102506c38ab5a14b80d36e7ca74db78329a17 870
gobjc++-4.5-multilib_4.5.0-4_i386.deb
68e6bafdc4c55a437c5ad41c7d3ce29d91c0e77c 5405998 gobjc++-4.5_4.5.0-4_i386.deb
07656e3c001780fda0147200c33e4c6f37a96897 194900
gobjc-4.5-multilib_4.5.0-4_i386.deb
a3390e43e1de5d98ebe3b691e871c3b7fc7a5754 4895138 gobjc-4.5_4.5.0-4_i386.deb
4554b0a5f4fc895dc2a5a9ce6260a0e8b3b54876 160024 libobjc2_4.5.0-4_i386.deb
2f6a7487b22c0e021657469b4fc026f7b9848c7e 306890 libobjc2-dbg_4.5.0-4_i386.deb
7882c05a77486d575775dac233d54a39736525c5 167496 lib64objc2_4.5.0-4_i386.deb
4d9c1fec9078ac510d70e78c3b65849728e946eb 333294 lib64objc2-dbg_4.5.0-4_i386.deb
d7d8db03b83c53983b72e9b1d82295aa9c98ba12 113206 gcj-4.5-base_4.5.0-4_i386.deb
1a808e3c30c504401e6ba4db73279e0d61a8aa00 48536
gcj-4.5-jre-headless_4.5.0-4_i386.deb
e7edd0dd2e8ad5cdfad774c204ca3a9a5bddc68c 11657290 libgcj11_4.5.0-4_i386.deb
7f2ca5d0da5710a47be541c6ecd6c40b9e3fe01c 83076 libgcj11-awt_4.5.0-4_i386.deb
e328f17ae8b89a3be7562bd45a6ed8c813e0d937 1008 gcj-4.5-jre_4.5.0-4_i386.deb
1fb375982558be61bb92556a5b68bf8b72d00c45 765474 libgcj11-dev_4.5.0-4_i386.deb
020e378f74ff57382579d076bcc3b7bd64b1713c 23094170 libgcj11-dbg_4.5.0-4_i386.deb
b5cd56003315e869f5737f3f467ff1d84271f2fb 4928932 gcj-4.5-jdk_4.5.0-4_i386.deb
c6230b4fc83cb369936dd75bcb4c2e46ecd10d67 1042694
g++-4.5-multilib_4.5.0-4_i386.deb
8109738ea64da308d7531181db9f2880f454e73c 7000440 g++-4.5_4.5.0-4_i386.deb
d6b94cd6e03b6fc26e2cb51baea9d74daa8d9d76 344724 libstdc++6_4.5.0-4_i386.deb
a76af5dd116d8d0d128ce4fbe0530f721bc2d086 337212 lib64stdc++6_4.5.0-4_i386.deb
91afd6e361b9979b89f0cd0e5549164da437ed4c 6932410
lib64stdc++6-4.5-dbg_4.5.0-4_i386.deb
14e77457dc5ed9f6dfa87a5689b39a10c3c28d2c 1587028
libstdc++6-4.5-dev_4.5.0-4_i386.deb
d713a468e3e7a6e07ad83122a787e34b356d3348 498656
libstdc++6-4.5-pic_4.5.0-4_i386.deb
32a7026d5cb997cf8ae312deeac7cac3c2681db2 4138856
libstdc++6-4.5-dbg_4.5.0-4_i386.deb
d967dbd57f58f213adc76558a2ec49ae5165d983 243296 libgfortran3_4.5.0-4_i386.deb
fc95b6cfb422cea408562e175ee58416269675dc 524486
libgfortran3-dbg_4.5.0-4_i386.deb
3799532e8316ee7d2e99dd63b396a08b675b980b 289152 lib64gfortran3_4.5.0-4_i386.deb
e7c0f79de884a027f58b2868f1866e5f0fdcdb2f 696278
lib64gfortran3-dbg_4.5.0-4_i386.deb
35746838469a053efc8b664214d0834c348b3afc 365604
gfortran-4.5-multilib_4.5.0-4_i386.deb
2687fe28d8c611710a755a1387b067bc7e869ab0 5225916 gfortran-4.5_4.5.0-4_i386.deb
21b7f04569bba346c4e31db9c6eeb71c317b023e 2219180
gcc-4.5-multilib_4.5.0-4_i386.deb
fe5ba5b60b10ea6667af3a9ed2bec6c0a17216ed 585486
gcc-4.5-plugin-dev_4.5.0-4_i386.deb
3455262db159e19f52d70b00d65de81321169730 7172558 gcc-4.5_4.5.0-4_i386.deb
Checksums-Sha256:
131636c69c1422031e5be8e04efed458446e27942601fb001a975d4c45c97bfb 4449
gcc-4.5_4.5.0-4.dsc
734124138c8b2582849ae5dd5d6ddf48d9ac757066d4a81faaa4f3844407eff4 3047666
gcc-4.5_4.5.0-4.diff.gz
3dddc58a9d88a085acb74ae9c34284a338e400ce27c378fcdfc78dbe373072f5 54844988
gcc-4.5-source_4.5.0-4_all.deb
dcc63d9cec9831b2a2ace6f7054f7199afa0fb73546514496049d1d84dd5e267 10478256
gcj-4.5-jre-lib_4.5.0-4_all.deb
b8b6c8e3cea600f285873b08f2ebaaf8319ffd34ae3248f3eb25e34b702246e7 12328912
gcj-4.5-source_4.5.0-4_all.deb
57400a3346f3a7b076b4a5b334dbe4b3e4a0e6eafa7accbc739743bac3380bd5 43818460
libgcj-doc_4.5.0-4_all.deb
63de9fd133aa5e4495469d3a6641a83405f52c962f3c0abf8c6bffb0d59ea839 3554330
libstdc++6-4.5-doc_4.5.0-4_all.deb
483fd24d09d6444d69d92fc02207c15a8ce234a243ef1e2e598fb842fa187787 2310242
gcc-4.5-locales_4.5.0-4_all.deb
57cf14bb7634162a47c14ab2233bdf10d99ff898ef50c2fa542357e02bb4b051 116766
gcc-4.5-base_4.5.0-4_i386.deb
a70735eeef6f7697d734743e96b1ea778038ad49a624aa449edff7c4dbdcc5b7 52308
libgcc1_4.5.0-4_i386.deb
b1637d79ac1dbddab73cfe97d45e99c217fc9a7c73824ece7a84915216be94c0 101626
libgcc1-dbg_4.5.0-4_i386.deb
82fb4ec9850f6abd75d60f2f7e1e26c24eb5398a8a91975ab3524f337c544dd8 43410
lib64gcc1_4.5.0-4_i386.deb
fd67209e0f6862e439464de7839dbdbc683d22989052e85130e7ac09f41bdaee 98040
lib64gcc1-dbg_4.5.0-4_i386.deb
01a9f9096a19e8ca8a4e361f8b011a5043027096ffbb3f5678f334bfa9f34985 23478
libgomp1_4.5.0-4_i386.deb
1462a8aea9c2a93e21e46524a05b67b182b064ec8f6a9ddcb68487b67c07fb02 66924
libgomp1-dbg_4.5.0-4_i386.deb
82c91ec38137844dbb9e23e84e76389f7e9f025095d84f8bbc5e0b70dbc7f5ab 25786
lib64gomp1_4.5.0-4_i386.deb
7842e4a6ceef1db1213d19857717e59c11a040c510a65604daf554c8ced78289 64898
lib64gomp1-dbg_4.5.0-4_i386.deb
28302ff885692e801cd981f988f9d3b2156bc0956ff5f889566e4927e7375ff4 4727416
cpp-4.5_4.5.0-4_i386.deb
50b970d561da836ade718458911cb6569c8c2c4a500afd2f65dfa9608629a782 59852
fixincludes_4.5.0-4_i386.deb
f6322cd639290732a3c9f07adfe0bd74e4cf8ea514a13b02d57b34a426ff1d55 214408
libmudflap0-4.5-dev_4.5.0-4_i386.deb
c47c2c155b4128ee1c47b97ec8f18364aacbb20b38d16173f687c761201d9912 81806
libmudflap0_4.5.0-4_i386.deb
826ff715608b4f544ea87e9a0972863eaa3f58e01926de8437f45bd93f6ed7b3 127328
libmudflap0-dbg_4.5.0-4_i386.deb
5f1e3467aa7a9f261de21387311a662779dde1ddffe59017ad5eb0377e701bf6 98838
lib64mudflap0_4.5.0-4_i386.deb
b773c8956a24b174315379418dd4b8d951e9e66a177976724d533dd579cd23d2 136120
lib64mudflap0-dbg_4.5.0-4_i386.deb
b89414de22d8f715400b65208b09e6a5835d07a6150a9af83c19ecdd04afae9c 870
gobjc++-4.5-multilib_4.5.0-4_i386.deb
84e162b96e536a9556ad72b2814f4bf4ea0425ed3da4c959bcd156f0cce6dcac 5405998
gobjc++-4.5_4.5.0-4_i386.deb
fe0a13c32f9a507143d521d74bc8baf83313fcc2d2fdfa1ae08c427249fe2757 194900
gobjc-4.5-multilib_4.5.0-4_i386.deb
7a8bd783889883d1b664046f2118e25c2b3b6844073cdb0da0d3082425202f66 4895138
gobjc-4.5_4.5.0-4_i386.deb
0f800765ef799e79c18290de7f66e07980541b90c276a90b8a6e9e532fa53248 160024
libobjc2_4.5.0-4_i386.deb
f8d569770a5c14844208c96d935da5e55cc63203c335a2bed540a713ad237ef4 306890
libobjc2-dbg_4.5.0-4_i386.deb
8ad9dd40d2b2eddad55f76c34e774553adf5d4524bb3efcdb0eb98c5f5bd516b 167496
lib64objc2_4.5.0-4_i386.deb
140231ca28fdbbefd6ab1bb4e1c00a692dd40a6912e5f2bdbbf6b317f4f73d7d 333294
lib64objc2-dbg_4.5.0-4_i386.deb
27fab7a1172f389697f22976818787e4b145e112f48ac5162188c00dfb086fc6 113206
gcj-4.5-base_4.5.0-4_i386.deb
b158ae27e92280f56dd50d57691c95b3daca85322756cb47ff4d66983d1fc5cf 48536
gcj-4.5-jre-headless_4.5.0-4_i386.deb
3ba32704e327d45d9a1ee56641a2520e1e32e2b2e2a23a3fd7913be5caf4ef0b 11657290
libgcj11_4.5.0-4_i386.deb
bf6d0332000d900dd2457ba27537d2c323d57b0a4efb9635334479c921c72c8b 83076
libgcj11-awt_4.5.0-4_i386.deb
98dea6508fca18eb01eca50ab4f17b0555ac4c40c3ff0aa6fdbef7c89508fcd8 1008
gcj-4.5-jre_4.5.0-4_i386.deb
a76fb42ef2a6a384e7690f1cea8dfcdf06e4d17ecb391ab3073c4a23e5d05a74 765474
libgcj11-dev_4.5.0-4_i386.deb
1b79c510446e4c651014a4049b1abd9272b4477d3aadccc9a7bc8476267b2afc 23094170
libgcj11-dbg_4.5.0-4_i386.deb
66b6ec1febadb853350a08cc6c6e849816b5fb8d8b8a641328f98ba0f4e9df12 4928932
gcj-4.5-jdk_4.5.0-4_i386.deb
eff91965f4c0daa3bbb0efde58680b6bd10339688dd7e6a384f52fd984d7b594 1042694
g++-4.5-multilib_4.5.0-4_i386.deb
94916366f19fe19d9836cfadfab7b841947e48ee741a6fd2a1956f1f029f26f7 7000440
g++-4.5_4.5.0-4_i386.deb
07af0c1a8cc52c0f5ca66e97f1d6ba545c768f91d0743da7c4f10c9ddc401fe2 344724
libstdc++6_4.5.0-4_i386.deb
6d3e5eb814410a2085ca74c67a4bd167df97c6a3b21b16dd5b3380eb8ddb0a39 337212
lib64stdc++6_4.5.0-4_i386.deb
6591b0b14c09f582db4aa63bb201d64fb4eca06ed2b72013fd462c502eeabe11 6932410
lib64stdc++6-4.5-dbg_4.5.0-4_i386.deb
5692e042c51f0b05c2171eed3f7de9335da6796f59340de64347da0a3dcacedb 1587028
libstdc++6-4.5-dev_4.5.0-4_i386.deb
631b49cb5a6abf206cdbf0278c3ecfdd26c82d456b0fce68e97888164e86102d 498656
libstdc++6-4.5-pic_4.5.0-4_i386.deb
a108559f82075b7e2483c832f4382b94f76ef75a47cfdb14a5bfde631879a312 4138856
libstdc++6-4.5-dbg_4.5.0-4_i386.deb
d944270ace8f3db8bd4fb64d58b63981dea9e2bec305d4e019fcdf716f87f726 243296
libgfortran3_4.5.0-4_i386.deb
8c5ca793b835ada627ce93d8ce0be6dc95a7a1419a52ca5fa657ba4a15f8d3e0 524486
libgfortran3-dbg_4.5.0-4_i386.deb
4ccdd3a168ee4f8110a80b5ddda0947a1f2736f354ad969ddc8803fbf7eb80c7 289152
lib64gfortran3_4.5.0-4_i386.deb
8f3493662898634bd73841c1971adb0a48e27233bb9a73f0ac9683e57c4848e5 696278
lib64gfortran3-dbg_4.5.0-4_i386.deb
dd9f1221954995588b37ab3e8175c7f584d03f292360947a4ab7ba6d292357a5 365604
gfortran-4.5-multilib_4.5.0-4_i386.deb
7c30eb7f9abdabf2369ea549b9d7e0c9e70a3b686a95bcf406e218d5641513f8 5225916
gfortran-4.5_4.5.0-4_i386.deb
5ae266e36524e4bd618e41b0410754fbaece3b9708c7a6e1290d4428f0283148 2219180
gcc-4.5-multilib_4.5.0-4_i386.deb
39ff45ea7560746b0c205df240842908dc06930121b8b9f3c716ba4641f49fa7 585486
gcc-4.5-plugin-dev_4.5.0-4_i386.deb
a52873e4c96547fdddcb17fbed0118d4f991945981a753eeaa7fe68330b417e8 7172558
gcc-4.5_4.5.0-4_i386.deb
Files:
d4b2fdb1721d4a411ed8c00344673cec 4449 devel optional gcc-4.5_4.5.0-4.dsc
37bcdd165c8fc863ab1f26e7c30d44da 3047666 devel optional gcc-4.5_4.5.0-4.diff.gz
62c7d4757fb1371e49a6d8a1c45f189f 54844988 devel optional
gcc-4.5-source_4.5.0-4_all.deb
ee73d5abaec7fa5a7ec1af472616cc66 10478256 java optional
gcj-4.5-jre-lib_4.5.0-4_all.deb
289c67b62acc2e4fc3145050ca59483f 12328912 java optional
gcj-4.5-source_4.5.0-4_all.deb
7c92ed58dbb5e329d0268451ba49a6dd 43818460 doc optional
libgcj-doc_4.5.0-4_all.deb
0241227431873545f08a9f72556ec8fd 3554330 doc optional
libstdc++6-4.5-doc_4.5.0-4_all.deb
0f924c67497355b95483227a5cdef185 2310242 devel optional
gcc-4.5-locales_4.5.0-4_all.deb
91cc9bc2f4bfd0f2c99efbb805aa5f69 116766 libs required
gcc-4.5-base_4.5.0-4_i386.deb
4872e823ff10dfecc8744f24eb2e8564 52308 libs required libgcc1_4.5.0-4_i386.deb
517034b3bc85a33fe76e33b0f12cdabd 101626 debug extra
libgcc1-dbg_4.5.0-4_i386.deb
dd254acec98436a9b56c5cdadaf39917 43410 libs optional lib64gcc1_4.5.0-4_i386.deb
fcaf135ce9fa547aee5e81cc7cb32528 98040 debug extra
lib64gcc1-dbg_4.5.0-4_i386.deb
a5c748f272de8d7e17153898a5e0299e 23478 libs optional libgomp1_4.5.0-4_i386.deb
047fad36cdac715ab831a0282a728a9f 66924 debug extra
libgomp1-dbg_4.5.0-4_i386.deb
98c8096eceb790388e69f5632a4e16f4 25786 libs optional
lib64gomp1_4.5.0-4_i386.deb
0e6aaba32ecc644144772767d67546e0 64898 debug extra
lib64gomp1-dbg_4.5.0-4_i386.deb
cd53fda7cd2cab48bb2623aa1a36ab79 4727416 interpreters optional
cpp-4.5_4.5.0-4_i386.deb
9a32f1c8d62eb7b707405d2821b04c85 59852 devel optional
fixincludes_4.5.0-4_i386.deb
acf52560d2e099ecfab9ce211830d44f 214408 libdevel optional
libmudflap0-4.5-dev_4.5.0-4_i386.deb
d292b4a912ff548a42ebc4f86501fd6f 81806 libs optional
libmudflap0_4.5.0-4_i386.deb
db79b4882c47a1316850f1e1d8b949f5 127328 debug extra
libmudflap0-dbg_4.5.0-4_i386.deb
179dd8f6e37694707c66f4f5fffec0b4 98838 libs optional
lib64mudflap0_4.5.0-4_i386.deb
c13c447fa3a2721e86c57e7100d2720a 136120 debug extra
lib64mudflap0-dbg_4.5.0-4_i386.deb
744579518919dfcc87abfbf870f5e0b6 870 devel optional
gobjc++-4.5-multilib_4.5.0-4_i386.deb
ee064a1feb1631a75d4fe7829d09553b 5405998 devel optional
gobjc++-4.5_4.5.0-4_i386.deb
9fdf2b470c5d5a0dc3b04d6ce9f12193 194900 devel optional
gobjc-4.5-multilib_4.5.0-4_i386.deb
2b172a4f526548b7ea3bdd674d155ae0 4895138 devel optional
gobjc-4.5_4.5.0-4_i386.deb
906eb30810491aa056fe109f46dc5aa9 160024 libs optional libobjc2_4.5.0-4_i386.deb
4e173a2ef30bde963b9b07eefedab88d 306890 debug extra
libobjc2-dbg_4.5.0-4_i386.deb
27def6ee06a76621f212ef8ed2599f7e 167496 libs optional
lib64objc2_4.5.0-4_i386.deb
03c5eaafabda7a3b153b593850eae639 333294 debug extra
lib64objc2-dbg_4.5.0-4_i386.deb
9698a6820df740ae288a7ed6762b0102 113206 libs optional
gcj-4.5-base_4.5.0-4_i386.deb
496b3ae0a6f5121732210b461a072cc8 48536 java optional
gcj-4.5-jre-headless_4.5.0-4_i386.deb
cb7616552675c0d0d068805a2d442673 11657290 libs optional
libgcj11_4.5.0-4_i386.deb
0377208ff8d085f90dd67f21c78d93c7 83076 libs optional
libgcj11-awt_4.5.0-4_i386.deb
97c851ecfacb9a4112464a5a074c4a4d 1008 java optional
gcj-4.5-jre_4.5.0-4_i386.deb
1197926a1e1ddfb04d2ad9c651d6ce36 765474 libdevel optional
libgcj11-dev_4.5.0-4_i386.deb
364c74d639207da9ecce27780440d943 23094170 debug extra
libgcj11-dbg_4.5.0-4_i386.deb
397e28d56b754dc5696213b42099e80e 4928932 java optional
gcj-4.5-jdk_4.5.0-4_i386.deb
e8a460ed67e6f771e379e3d429c8341d 1042694 devel optional
g++-4.5-multilib_4.5.0-4_i386.deb
aa820df2338d2308fbc112d2b50be280 7000440 devel optional
g++-4.5_4.5.0-4_i386.deb
b9c502f319fed29ccd2a7e823d83b916 344724 libs required
libstdc++6_4.5.0-4_i386.deb
85e8c15c20bc26f33e173f7ee337bdaf 337212 libs optional
lib64stdc++6_4.5.0-4_i386.deb
7735fc896948d4dcfa55e9ba934486ea 6932410 debug extra
lib64stdc++6-4.5-dbg_4.5.0-4_i386.deb
8f59cc8ad21d0ad820eafe353ae88007 1587028 libdevel optional
libstdc++6-4.5-dev_4.5.0-4_i386.deb
f132606ca9d8518643e1995debd8ef5f 498656 libdevel extra
libstdc++6-4.5-pic_4.5.0-4_i386.deb
b578470e5eb7b7373fd957a0c197d158 4138856 debug extra
libstdc++6-4.5-dbg_4.5.0-4_i386.deb
c24eb6d55a4d4c83aefd60d86e3b4920 243296 libs optional
libgfortran3_4.5.0-4_i386.deb
e7880b1466bbca5f640b180dc15f3e12 524486 debug extra
libgfortran3-dbg_4.5.0-4_i386.deb
c561f1b380a992608038ddbfa247f830 289152 libs optional
lib64gfortran3_4.5.0-4_i386.deb
a66eeccc49590964e4ee003a15aa5dc5 696278 debug extra
lib64gfortran3-dbg_4.5.0-4_i386.deb
94577f2b6ad35e42f5b236fa2c5206a1 365604 devel optional
gfortran-4.5-multilib_4.5.0-4_i386.deb
f4d0e445dc5c43b1ce554efdbc7fbb5d 5225916 devel optional
gfortran-4.5_4.5.0-4_i386.deb
e05fdf291a8637052b84750fd9497d2e 2219180 devel optional
gcc-4.5-multilib_4.5.0-4_i386.deb
b8b6dae9cf902d60b5a011884e498c13 585486 devel optional
gcc-4.5-plugin-dev_4.5.0-4_i386.deb
d60127192e6904c165af435dc8758a9b 7172558 devel optional
gcc-4.5_4.5.0-4_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)
iEYEARECAAYFAkv+9PYACgkQStlRaw+TLJwYCACeLCBozwRm+rsvgGwzHNkYdAaQ
N78AoL1F9pazW7xj/qyM+nLeQVezs5k1
=Z8RL
-----END PGP SIGNATURE-----
--- End Message ---