Your message dated Fri, 02 Jan 2009 03:32:16 +0000
with message-id <e1lialk-00014n...@ries.debian.org>
and subject line Bug#506713: fixed in gcc-4.3 4.3.2-1.1
has caused the Debian Bug report #506713,
regarding [PR38287, fixed in 4.4] Incorrect code in SPARC shared libraries
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.)
--
506713: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506713
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: g++-4.3
Version: 4.3.2-1
Severity: serious
Functions compiled for SPARC with both -O2 and -fPIC options, which
return structures and require global data, may have incorrect code
generated for them.
The following example is based on Qt 3, which is affected by this bug
(see #490999). The code should of course print "1 + 1 = 2" but when
compiled for SPARC with -O2 -fPIC it prints "1 + 1 = 0" (or may crash).
The first two instructions generated for QTime::addMSecs() are a save
using %sp and a load relative to %sp which depends on the *old* value of
%sp.
This example appears to be compiled correctly if I remove either option
or reduce the value of MSECS_PER_DAY such that it can be an immediate
constant.
Ben.
#include <iostream>
class QTime
{
public:
explicit QTime(int ms = 0) : ds(ms) {}
static QTime currentTime() { return QTime(); }
QTime addMSecs(int ms) const;
int msecs() const { return ds; }
private:
unsigned ds;
};
static const unsigned MSECS_PER_DAY = 86400000;
QTime QTime::addMSecs( int ms ) const
{
QTime t;
if ( ms < 0 ) {
// % not well-defined for -ve, but / is.
int negdays = (MSECS_PER_DAY-ms) / MSECS_PER_DAY;
t.ds = ((int)ds + ms + negdays*MSECS_PER_DAY)
% MSECS_PER_DAY;
} else {
t.ds = ((int)ds + ms) % MSECS_PER_DAY;
}
return t;
}
int main(int argc, char* argv[] )
{
std::cout << "1 + 1 = " << QTime(1).addMSecs(1).msecs() << std::endl;
}
signature.asc
Description: This is a digitally signed message part
--- End Message ---
--- Begin Message ---
Source: gcc-4.3
Source-Version: 4.3.2-1.1
We believe that the bug you reported is fixed in the latest version of
gcc-4.3, which is due to be installed in the Debian FTP archive:
cpp-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/cpp-4.3_4.3.2-1.1_i386.deb
fixincludes_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/fixincludes_4.3.2-1.1_i386.deb
g++-4.3-multilib_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/g++-4.3-multilib_4.3.2-1.1_i386.deb
g++-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/g++-4.3_4.3.2-1.1_i386.deb
gcc-4.3-base_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gcc-4.3-base_4.3.2-1.1_i386.deb
gcc-4.3-locales_4.3.2-1.1_all.deb
to pool/main/g/gcc-4.3/gcc-4.3-locales_4.3.2-1.1_all.deb
gcc-4.3-multilib_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gcc-4.3-multilib_4.3.2-1.1_i386.deb
gcc-4.3-source_4.3.2-1.1_all.deb
to pool/main/g/gcc-4.3/gcc-4.3-source_4.3.2-1.1_all.deb
gcc-4.3_4.3.2-1.1.diff.gz
to pool/main/g/gcc-4.3/gcc-4.3_4.3.2-1.1.diff.gz
gcc-4.3_4.3.2-1.1.dsc
to pool/main/g/gcc-4.3/gcc-4.3_4.3.2-1.1.dsc
gcc-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gcc-4.3_4.3.2-1.1_i386.deb
gfortran-4.3-multilib_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gfortran-4.3-multilib_4.3.2-1.1_i386.deb
gfortran-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gfortran-4.3_4.3.2-1.1_i386.deb
gobjc++-4.3-multilib_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gobjc++-4.3-multilib_4.3.2-1.1_i386.deb
gobjc++-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gobjc++-4.3_4.3.2-1.1_i386.deb
gobjc-4.3-multilib_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gobjc-4.3-multilib_4.3.2-1.1_i386.deb
gobjc-4.3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/gobjc-4.3_4.3.2-1.1_i386.deb
lib64gcc1-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gcc1-dbg_4.3.2-1.1_i386.deb
lib64gcc1_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gcc1_4.3.2-1.1_i386.deb
lib64gfortran3-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gfortran3-dbg_4.3.2-1.1_i386.deb
lib64gfortran3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gfortran3_4.3.2-1.1_i386.deb
lib64gomp1-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gomp1-dbg_4.3.2-1.1_i386.deb
lib64gomp1_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64gomp1_4.3.2-1.1_i386.deb
lib64mudflap0-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64mudflap0-dbg_4.3.2-1.1_i386.deb
lib64mudflap0_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64mudflap0_4.3.2-1.1_i386.deb
lib64objc2-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64objc2-dbg_4.3.2-1.1_i386.deb
lib64objc2_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64objc2_4.3.2-1.1_i386.deb
lib64stdc++6-4.3-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64stdc++6-4.3-dbg_4.3.2-1.1_i386.deb
lib64stdc++6_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/lib64stdc++6_4.3.2-1.1_i386.deb
libgcc1-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgcc1-dbg_4.3.2-1.1_i386.deb
libgcc1_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgcc1_4.3.2-1.1_i386.deb
libgfortran3-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgfortran3-dbg_4.3.2-1.1_i386.deb
libgfortran3_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgfortran3_4.3.2-1.1_i386.deb
libgomp1-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgomp1-dbg_4.3.2-1.1_i386.deb
libgomp1_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libgomp1_4.3.2-1.1_i386.deb
libmudflap0-4.3-dev_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libmudflap0-4.3-dev_4.3.2-1.1_i386.deb
libmudflap0-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libmudflap0-dbg_4.3.2-1.1_i386.deb
libmudflap0_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libmudflap0_4.3.2-1.1_i386.deb
libobjc2-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libobjc2-dbg_4.3.2-1.1_i386.deb
libobjc2_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libobjc2_4.3.2-1.1_i386.deb
libstdc++6-4.3-dbg_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libstdc++6-4.3-dbg_4.3.2-1.1_i386.deb
libstdc++6-4.3-dev_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libstdc++6-4.3-dev_4.3.2-1.1_i386.deb
libstdc++6-4.3-doc_4.3.2-1.1_all.deb
to pool/main/g/gcc-4.3/libstdc++6-4.3-doc_4.3.2-1.1_all.deb
libstdc++6-4.3-pic_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libstdc++6-4.3-pic_4.3.2-1.1_i386.deb
libstdc++6_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/libstdc++6_4.3.2-1.1_i386.deb
protoize_4.3.2-1.1_i386.deb
to pool/main/g/gcc-4.3/protoize_4.3.2-1.1_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 506...@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.3 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: Wed, 31 Dec 2008 09:38:56 +0100
Source: gcc-4.3
Binary: gcc-4.3-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4
libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1
libn32gcc1-dbg gcc-4.3 gcc-4.3-multilib gcc-4.3-hppa64 gcc-4.3-spu g++-4.3-spu
gfortran-4.3-spu cpp-4.3 gcc-4.3-locales g++-4.3 g++-4.3-multilib libmudflap0
libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg
libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.3-dev libgomp1 libgomp1-dbg
lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg
protoize gobjc++-4.3 gobjc++-4.3-multilib gobjc-4.3 gobjc-4.3-multilib libobjc2
libobjc2-dbg lib64objc2 lib64objc2-dbg lib32objc2 lib32objc2-dbg libn32objc2
libn32objc2-dbg gfortran-4.3 gfortran-4.3-multilib libgfortran3
libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3
lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libstdc++6 lib32stdc++6
lib64stdc++6 libn32stdc++6 libstdc++6-4.3-dev libstdc++6-4.3-pic
libstdc++6-4.3-dbg lib32stdc++6-4.3-dbg lib64stdc++6-4.3-dbg
libn32stdc++6-4.3-dbg libstdc++6-4.3-doc gcc-4.3-soft-float fixincludes
gcc-4.3-source
Architecture: source all i386
Version: 4.3.2-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-...@lists.debian.org>
Changed-By: Matthias Klose <d...@debian.org>
Description:
cpp-4.3 - The GNU C preprocessor
fixincludes - Fix non-ANSI header files
g++-4.3 - The GNU C++ compiler
g++-4.3-multilib - The GNU C++ compiler (multilib files)
g++-4.3-spu - SPU cross-compiler (C++ compiler)
gcc-4.3 - The GNU C compiler
gcc-4.3-base - The GNU Compiler Collection (base package)
gcc-4.3-hppa64 - The GNU C compiler (cross compiler for hppa64)
gcc-4.3-locales - The GNU C compiler (native language support files)
gcc-4.3-multilib - The GNU C compiler (multilib files)
gcc-4.3-soft-float - The soft-floating-point gcc libraries (arm)
gcc-4.3-source - Source of the GNU Compiler Collection
gcc-4.3-spu - SPU cross-compiler (preprocessor and C compiler)
gfortran-4.3 - The GNU Fortran 95 compiler
gfortran-4.3-multilib - The GNU Fortran 95 compiler (multilib files)
gfortran-4.3-spu - SPU cross-compiler (Fortran compiler)
gobjc++-4.3 - The GNU Objective-C++ compiler
gobjc++-4.3-multilib - The GNU Objective-C++ compiler (multilib files)
gobjc-4.3 - The GNU Objective-C compiler
gobjc-4.3-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.3-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.3-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.3-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.3-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.3-dbg - The GNU Standard C++ Library v3 (debugging files)
libstdc++6-4.3-dev - The GNU Standard C++ Library v3 (development files)
libstdc++6-4.3-doc - The GNU Standard C++ Library v3 (documentation files)
libstdc++6-4.3-pic - The GNU Standard C++ Library v3 (shared library subset
kit)
protoize - Create/remove ANSI prototypes from C code
Closes: 506713
Changes:
gcc-4.3 (4.3.2-1.1) unstable; urgency=medium
.
* debian/patches/libobjc-armel.dpatch: Don't define EH_USES, apply
r142204 for armel, taken from the gcc-4_3-branch.
* Fix PR target/38287 (sparc, wrong code). Closes: #506713.
* Apply selected fixes from the gcc-4_3-branch:
- Fix PR tree-optimization/37102 (wrong code).
- Fix PR tree-optimization/37868 (wrong code).
- Fix PR rtl-optimization/37544 (wrong code).
- Fix PR c++/38030 (wrong code).
- Fix PR rtl-optimization/37489 (wrong code).
- Fix PR rtl-optimization/37408 (wrong code).
- Fix PR middle-end/37731 (wrong code).
- Fix PR middle-end/37882 (wrong code).
Checksums-Sha1:
7cdb0efeba73f3562f78f23d74d2602067976823 3578 gcc-4.3_4.3.2-1.1.dsc
a3dfe2b464d93eafe0bf2784cfc311ebc1ee94a5 723458 gcc-4.3_4.3.2-1.1.diff.gz
41311a060e8ee73669a87429df4d74f4d683a647 44859588
gcc-4.3-source_4.3.2-1.1_all.deb
798d11b562f72c26fc4aeb43f149db589dfad249 10083334
libstdc++6-4.3-doc_4.3.2-1.1_all.deb
46705356685d6760781074ce865454aa5c8a7160 2052636
gcc-4.3-locales_4.3.2-1.1_all.deb
fe63faad76eb3805ba353c6212bff566f8b8028d 103374 gcc-4.3-base_4.3.2-1.1_i386.deb
1903a4d87933e4d9d05dba7d68e43a974ba54d4d 25756 libgcc1_4.3.2-1.1_i386.deb
f2db8e0f74d2fe5d6e9e385c430a561156e27bd5 58180 libgcc1-dbg_4.3.2-1.1_i386.deb
9e2fcd87b3b32f599bcedc567d8488ae54631466 44044 lib64gcc1_4.3.2-1.1_i386.deb
68b98000d53a0dc301ede86fa96297d80094fce2 82956 lib64gcc1-dbg_4.3.2-1.1_i386.deb
dc7f9af2ffc11ebb14c4480c9b4bd7ada669d8f1 13248 libgomp1_4.3.2-1.1_i386.deb
a115428a5680d09fee2f9441b6f6ba965944432e 33852 libgomp1-dbg_4.3.2-1.1_i386.deb
aa2dde000f24c4b642c247f1b12ce553e5b7ce8e 15494 lib64gomp1_4.3.2-1.1_i386.deb
b45c1a0c2ba9745a9f41b097a82c6ecb081c0efd 34850
lib64gomp1-dbg_4.3.2-1.1_i386.deb
02f2ac6b75cfe77f7380dfdf1d6066c5f1ee7ebe 3087432 cpp-4.3_4.3.2-1.1_i386.deb
5adef025c75586db9fd7c2e8bb9118b99a916ca2 41716 protoize_4.3.2-1.1_i386.deb
e8419442f2376e2d79cf522366f85639a7605ca0 62960 fixincludes_4.3.2-1.1_i386.deb
2f9fa29506bd90901e6152efd20c154069abfd5c 208520
libmudflap0-4.3-dev_4.3.2-1.1_i386.deb
806ed0fa2882331a48400ed8fe49e986b776d3b8 77568 libmudflap0_4.3.2-1.1_i386.deb
1b60beed355110d4f0e4068f609dafdbe13061fe 122568
libmudflap0-dbg_4.3.2-1.1_i386.deb
292cd9badf4a518ec562cb4f11af7bde86b7016d 95984 lib64mudflap0_4.3.2-1.1_i386.deb
c4b19633928c18029ebd31a51750701f8cfbb255 127534
lib64mudflap0-dbg_4.3.2-1.1_i386.deb
f956b807c37e3403920448d9fd97090e3d596095 852
gobjc++-4.3-multilib_4.3.2-1.1_i386.deb
f42d4717709b0223649c963a0fae1b0ced9a619e 3314788 gobjc++-4.3_4.3.2-1.1_i386.deb
835402c844824cb7b33210e33f80fa68e3ce22ef 183788
gobjc-4.3-multilib_4.3.2-1.1_i386.deb
d689e2ac27c25cf8ef18579a56c2d772c1f9dfed 3225314 gobjc-4.3_4.3.2-1.1_i386.deb
e89f015d9429cd282837534d1532c15c6b6b2baf 149566 libobjc2_4.3.2-1.1_i386.deb
b8f5278ce9ffcbdcf5356db4bbf7c494e968035f 271050 libobjc2-dbg_4.3.2-1.1_i386.deb
2d8e07efcf7dd533e1232e462cc66560955a13f9 158670 lib64objc2_4.3.2-1.1_i386.deb
07acbe58d19ac33878f9273efcf5c4d75bc8cc64 285108
lib64objc2-dbg_4.3.2-1.1_i386.deb
0b34926f4c1bb7d106fa4af9c53afccf01063c92 1036380
g++-4.3-multilib_4.3.2-1.1_i386.deb
3ac82057deb4bd5b22a4fabdd9aa4c587e70ce7c 3413646 g++-4.3_4.3.2-1.1_i386.deb
4b50b14a9e7ba972ddd81e1633f8568dd7e65b48 332444 libstdc++6_4.3.2-1.1_i386.deb
c620e79c6a06f559dcbd1fa5e9879e6570a0d4a2 334112 lib64stdc++6_4.3.2-1.1_i386.deb
c023d4a5ff8f8babc22b265c57f35c86aedab5b4 6038114
lib64stdc++6-4.3-dbg_4.3.2-1.1_i386.deb
d48d4e77d91756dc2b23399f926b7932c9843324 1388812
libstdc++6-4.3-dev_4.3.2-1.1_i386.deb
3cbfe0cd02299b91598689d1be5f37cd5234b083 487908
libstdc++6-4.3-pic_4.3.2-1.1_i386.deb
88ff66e554bc271f578dd6b2906758bb2f0f37de 3598756
libstdc++6-4.3-dbg_4.3.2-1.1_i386.deb
3c097b67a0dad2deb3b0d8778c651a88115a713a 229126 libgfortran3_4.3.2-1.1_i386.deb
cce8bab0b40d822bafd9b61e68a944329e5f13d7 350286
libgfortran3-dbg_4.3.2-1.1_i386.deb
d00ea1a55c895c077ba5bb4011dbf72d72126e9e 270914
lib64gfortran3_4.3.2-1.1_i386.deb
a3083bfac8029bac32d59e9fd67218520b219484 467016
lib64gfortran3-dbg_4.3.2-1.1_i386.deb
2682a2a52ce68b0a8fd9c36f074ee8f01258825a 306312
gfortran-4.3-multilib_4.3.2-1.1_i386.deb
02b44d65a845d6617a2965ee1666d0a2f8b04c54 3503474
gfortran-4.3_4.3.2-1.1_i386.deb
87c926dfe18073d4dbfcecd97210275356cfb23d 2166918
gcc-4.3-multilib_4.3.2-1.1_i386.deb
d8044c0202ef1a41ffa78c9e38cc14f135a8745b 2747176 gcc-4.3_4.3.2-1.1_i386.deb
Checksums-Sha256:
7a636fe2c100ca1fe2f4ae4d03eeefe266b598463313bca0b71aa0b27d6a36bc 3578
gcc-4.3_4.3.2-1.1.dsc
67549d953345628c9997502451a6d1252497e7af9043aac76e07ec222a7a99e1 723458
gcc-4.3_4.3.2-1.1.diff.gz
83ed77ab756100c104a126fbe5ddb7d8ba9d39d89cceb30add0a423b7a681dd7 44859588
gcc-4.3-source_4.3.2-1.1_all.deb
cc3e277d96f5a9c4881c87f01acead0d4873d5ff5562e42d6fd0ea33b3667880 10083334
libstdc++6-4.3-doc_4.3.2-1.1_all.deb
00db34eb49cc9fd0b6bf0310fee6843fcca416bead0092c82c443d3d53fe1847 2052636
gcc-4.3-locales_4.3.2-1.1_all.deb
bb9bcf1e0dbbf3adc64c7b007dc01aa9388bed4bb136f9f1cda06bd12012a123 103374
gcc-4.3-base_4.3.2-1.1_i386.deb
3c018fea7e862024f183c0b244f7f807b47354c4510dfb1f9ec99fe6d2b2bd0b 25756
libgcc1_4.3.2-1.1_i386.deb
8733769b165c7adb5f3b9af324de497ed25d1eb23a2bbb55689856d87fbedfe1 58180
libgcc1-dbg_4.3.2-1.1_i386.deb
6be50b3c2e9a78e0522e7533667e5ba2e2a4deba018b27c21ee723e479627f5e 44044
lib64gcc1_4.3.2-1.1_i386.deb
8dac5479a174d3d7df48e88ff45e3fa0dc92d6c1e6594c747b2c356230289753 82956
lib64gcc1-dbg_4.3.2-1.1_i386.deb
cda8caacb9bc50aa28e32c9d23fc74922a0e7af87958ce3a7ef460be229ead11 13248
libgomp1_4.3.2-1.1_i386.deb
662f5475cb192400d414b018299295639650833e5a6dbaace92953aecfefdc4a 33852
libgomp1-dbg_4.3.2-1.1_i386.deb
65e86720dfa4aab0dc58d350b8d6d4f86dee574ec372cfda1d02191df17afa3d 15494
lib64gomp1_4.3.2-1.1_i386.deb
5782eaad9ed5a7bb7136dda02a3f5e0f35b385b2493d59b92f6723a8f7147026 34850
lib64gomp1-dbg_4.3.2-1.1_i386.deb
a42bc4fab7da938df43dffed21c39f83216acf69a090343d03821b7c932107d1 3087432
cpp-4.3_4.3.2-1.1_i386.deb
d8fb611f6803efb67a358bf3c21ce41f5945f484ec1cac611a82090d3fcb845b 41716
protoize_4.3.2-1.1_i386.deb
907ff18680d2b908deb18346d278fa2b54c80d778fad670995864a123ba5ee2b 62960
fixincludes_4.3.2-1.1_i386.deb
c4786437ec84e2c2e12b78459acf5be4c86915ed30fa708b7364f853b7c85699 208520
libmudflap0-4.3-dev_4.3.2-1.1_i386.deb
4d501b3d99b3c16e1e1a47196efd55c9b17ec9c00fa7dff4aeb1e69645a3d114 77568
libmudflap0_4.3.2-1.1_i386.deb
f93af2d9cdad3e8cd15c63c2a7cc7a4dda18bd972160612b7b95644035a466b3 122568
libmudflap0-dbg_4.3.2-1.1_i386.deb
75cd829876f3d188cd40e8abbb565b75f3bbd751a74da747a493222b00e6042a 95984
lib64mudflap0_4.3.2-1.1_i386.deb
8bf30f96ac32f49e2afb4e92a48adebb4a52395c5a5f86d0ce1b5882e1cac88f 127534
lib64mudflap0-dbg_4.3.2-1.1_i386.deb
48f010610bab74640c942a8c0cbc0194599f8450ea4d5a77e043c26aafd203e3 852
gobjc++-4.3-multilib_4.3.2-1.1_i386.deb
d261f143973e80f4d94ced7cae8c904ca0f56c1b8cdd493e43dc82aaa007994e 3314788
gobjc++-4.3_4.3.2-1.1_i386.deb
4de594849b828336b924bdbce688caeaabd929dae4624490868c2527f7f454bd 183788
gobjc-4.3-multilib_4.3.2-1.1_i386.deb
2fe6486e238959f524b4839ffab76a4ba217b305b153fa33590bf1899e23ff6a 3225314
gobjc-4.3_4.3.2-1.1_i386.deb
ad8f6303f618fa431a139211155742b7c1a7be9afe2dcb41bd81a806e3193c17 149566
libobjc2_4.3.2-1.1_i386.deb
9b06c06f2da19d185fca45486990aada34b02a2a13b0c5aea77a711157079c1c 271050
libobjc2-dbg_4.3.2-1.1_i386.deb
c9d0c5a44b5122b661bbdfa8a1d4139a8705191b5046fb1ab604f03da388ac0f 158670
lib64objc2_4.3.2-1.1_i386.deb
f0ddd1a632f54f2113dc0f6a684c768e70fae98ad36fc4787ad9185d1f31265b 285108
lib64objc2-dbg_4.3.2-1.1_i386.deb
4399767afcd5011827146a506dc3aefc0af80d97cc4d1c0f0283dfb9d140aed3 1036380
g++-4.3-multilib_4.3.2-1.1_i386.deb
3e56c5e7306667cf87e54bef40fd14b99bb3b5e804e70f2824c9e26565722890 3413646
g++-4.3_4.3.2-1.1_i386.deb
4958d78b0aaf36a2741058dee73e8175802f016a6fe3cfc578769038e37d90f6 332444
libstdc++6_4.3.2-1.1_i386.deb
c06a294752e8ac80211f63955524e8a8da8cf44614eb948282251b923457d9b5 334112
lib64stdc++6_4.3.2-1.1_i386.deb
c71321446fca328b528e0dea5c54942f0dd4e4142702c72133e0b2df4664442b 6038114
lib64stdc++6-4.3-dbg_4.3.2-1.1_i386.deb
f18c01798386440332c641bd37a44928b7edbfba863959776936ed3015eb761b 1388812
libstdc++6-4.3-dev_4.3.2-1.1_i386.deb
1ba472560dc0f68e5b43542571e4d3eb7ca536869d81a7724b8173e96ea25bf0 487908
libstdc++6-4.3-pic_4.3.2-1.1_i386.deb
d3743bd173cab0ada860cb8af3f9515ab00f89f35bdab0cb524fd52477bc025a 3598756
libstdc++6-4.3-dbg_4.3.2-1.1_i386.deb
21c2a505e0112d55341a61962d0a461240076328eb6ce4309fc99fa7261ee361 229126
libgfortran3_4.3.2-1.1_i386.deb
b421bbc73d5594b1138bb3ee140342fb16a5bd7ec296cf7565ef6100e1421c4e 350286
libgfortran3-dbg_4.3.2-1.1_i386.deb
08fdd4080e302e8c4309d0d2c85c814f91d791140b6b20b0aa96a6126beaf1f1 270914
lib64gfortran3_4.3.2-1.1_i386.deb
32ae3a5adc973ee0127bc8d50da2da5b7b27fc7d04231d20a339fa0500ef3e73 467016
lib64gfortran3-dbg_4.3.2-1.1_i386.deb
2f0ceb56e9abd30e187c5386b0d5b2196505d16a3a26f850b859865886269c53 306312
gfortran-4.3-multilib_4.3.2-1.1_i386.deb
e00b94aae54688ce00ce8ff54b476bd71d66fb395c47258aa8655dd8c45e7cdd 3503474
gfortran-4.3_4.3.2-1.1_i386.deb
7ba49eaece83b220241f759d05af1e7ce9bc31b42098e728f48d4ff4d5cdeee5 2166918
gcc-4.3-multilib_4.3.2-1.1_i386.deb
d23d016d367bad971712dce62b1bd9469297d0199be4d4cc1950d9b6f228b874 2747176
gcc-4.3_4.3.2-1.1_i386.deb
Files:
0deca48ff022751408cde85d0f60182f 3578 devel optional gcc-4.3_4.3.2-1.1.dsc
b9c50b4d01c89241a9bc1e17d003c97d 723458 devel optional
gcc-4.3_4.3.2-1.1.diff.gz
25b223682b4ffe2c432b1614652f8fe9 44859588 devel optional
gcc-4.3-source_4.3.2-1.1_all.deb
a21487a8c77b446778d0f8df0e6a001a 10083334 doc optional
libstdc++6-4.3-doc_4.3.2-1.1_all.deb
0b54b966292053c042f40baddd6a31fa 2052636 devel optional
gcc-4.3-locales_4.3.2-1.1_all.deb
d9b6242bb3a3406cc3cbaf0e22a033c6 103374 libs required
gcc-4.3-base_4.3.2-1.1_i386.deb
6c2bca4f87524681a15b2d4e0af90a1e 25756 libs required libgcc1_4.3.2-1.1_i386.deb
0af1f24bc57fd349cc64b5efdc94cbe3 58180 libdevel extra
libgcc1-dbg_4.3.2-1.1_i386.deb
9bb7136052096ee391dae34ff4142cf8 44044 libs optional
lib64gcc1_4.3.2-1.1_i386.deb
ff059beeaf69e925d8901385efc8bc3d 82956 libdevel extra
lib64gcc1-dbg_4.3.2-1.1_i386.deb
158d9a7de61443bc3360af9f4e98219f 13248 libs optional
libgomp1_4.3.2-1.1_i386.deb
49281a8ca5a382c65bc825320a49edae 33852 libdevel extra
libgomp1-dbg_4.3.2-1.1_i386.deb
0ab3c380e3f6283b8032ca85a5e8bd81 15494 libs optional
lib64gomp1_4.3.2-1.1_i386.deb
36e9c40674304a0e4b1d4846ef68f7f1 34850 libdevel extra
lib64gomp1-dbg_4.3.2-1.1_i386.deb
192aa5320dd9b1da7033e7b254114667 3087432 interpreters optional
cpp-4.3_4.3.2-1.1_i386.deb
4f8715f04d6852a4022d7223d2d8a48d 41716 devel optional
protoize_4.3.2-1.1_i386.deb
706213a4a41405b6fdd98550e76511ea 62960 devel optional
fixincludes_4.3.2-1.1_i386.deb
f629db02fd3a9e3946a454b4df0dee08 208520 libdevel optional
libmudflap0-4.3-dev_4.3.2-1.1_i386.deb
a1b7d64fc17e4e234b68f450e634f86f 77568 libs optional
libmudflap0_4.3.2-1.1_i386.deb
935ef0ab565e1b0bd8b755fb3e873011 122568 libdevel extra
libmudflap0-dbg_4.3.2-1.1_i386.deb
41d6820f5b263b93b2737a435d53c512 95984 libs optional
lib64mudflap0_4.3.2-1.1_i386.deb
f2a9a17bb5627c4e9725be7c4444d316 127534 libdevel extra
lib64mudflap0-dbg_4.3.2-1.1_i386.deb
89f0b51470e1c9476e49c36d26bc1ebf 852 devel optional
gobjc++-4.3-multilib_4.3.2-1.1_i386.deb
c9be34b7724347ad134b38eb7daba383 3314788 devel optional
gobjc++-4.3_4.3.2-1.1_i386.deb
3763562c1be2e170c054eff8450f90fc 183788 devel optional
gobjc-4.3-multilib_4.3.2-1.1_i386.deb
a6b47f75d5bab6c3196e4769245fd39a 3225314 devel optional
gobjc-4.3_4.3.2-1.1_i386.deb
40dea1c99280e5c168380795d9b8dde8 149566 libs optional
libobjc2_4.3.2-1.1_i386.deb
1d53e5323de815cb91ed0531e2fd1403 271050 libdevel extra
libobjc2-dbg_4.3.2-1.1_i386.deb
0d242bfea9bd3bf8a439a497f28b7e6a 158670 libs optional
lib64objc2_4.3.2-1.1_i386.deb
c8b7babaaa40817f8ff807328feb529f 285108 libdevel extra
lib64objc2-dbg_4.3.2-1.1_i386.deb
b5e01a3799dd752119c90924c939678a 1036380 devel optional
g++-4.3-multilib_4.3.2-1.1_i386.deb
38d1fa01fe777465680fbc99d1d12dfa 3413646 devel optional
g++-4.3_4.3.2-1.1_i386.deb
4ba07fd7e8f8887fdeab7e3b620a6447 332444 libs required
libstdc++6_4.3.2-1.1_i386.deb
54d7ced8e92e700da2f1c1acec809564 334112 libs optional
lib64stdc++6_4.3.2-1.1_i386.deb
3d47eb75e9a6b81156db8068d0c3215e 6038114 libdevel extra
lib64stdc++6-4.3-dbg_4.3.2-1.1_i386.deb
e489839741bbfc3d20b4a310d1eb277c 1388812 libdevel optional
libstdc++6-4.3-dev_4.3.2-1.1_i386.deb
4ba703f8641e3e0a947d87278e3f3917 487908 libdevel extra
libstdc++6-4.3-pic_4.3.2-1.1_i386.deb
a95966d92a3b4349dab92837cc53b7d6 3598756 libdevel extra
libstdc++6-4.3-dbg_4.3.2-1.1_i386.deb
6df6aa7a3fa711105b11ebd260866c0d 229126 libs optional
libgfortran3_4.3.2-1.1_i386.deb
ebebe48f5a550b6adf08c9e8043370a9 350286 libdevel extra
libgfortran3-dbg_4.3.2-1.1_i386.deb
4b48cb908a948847624750e9dbb7fdb8 270914 libs optional
lib64gfortran3_4.3.2-1.1_i386.deb
f703199648860b82c8245b340d02c2ab 467016 libdevel extra
lib64gfortran3-dbg_4.3.2-1.1_i386.deb
9b902f7a5de3585f3726d2e735df44e2 306312 devel optional
gfortran-4.3-multilib_4.3.2-1.1_i386.deb
7dddf9e5e19c6d43c5b94cbbd6b02d79 3503474 devel optional
gfortran-4.3_4.3.2-1.1_i386.deb
35c55e94628470807827f06dee13d5a5 2166918 devel optional
gcc-4.3-multilib_4.3.2-1.1_i386.deb
fa3a2d1ed6ca9193d70b10d4262214bd 2747176 devel optional
gcc-4.3_4.3.2-1.1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
iEYEARECAAYFAkldh4QACgkQStlRaw+TLJzfZwCgvdCGEu7leMwZTOent18Z5SG4
BWEAn3RdmVAIavwRuZr9zqK6irXbOOhu
=WK1P
-----END PGP SIGNATURE-----
--- End Message ---