[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#632380: marked as done (gcc-4.6: please add m68k support)



Your message dated Tue, 05 Jul 2011 15:18:24 +0000
with message-id <E1Qe7OK-0001XB-VS@franck.debian.org>
and subject line Bug#632380: fixed in gcc-4.6 4.6.1-2
has caused the Debian Bug report #632380,
regarding gcc-4.6: please add m68k support
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 owner@bugs.debian.org
immediately.)


-- 
632380: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632380
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Source: gcc-4.6
Version: 4.6.1-1
Severity: wishlist
Tags: patch

Hi,

as promised I’ve ported what was still in src:gcc-4.4 regarding
m68k support and related fixes to gcc-4.6. The package with this
patch applied builds on amd64 both natively¹ and as a crosscompiler,
the m68k native build will take a few days as usual. The multiarch
selection² has been fixed upstream³, and all but one of the pr*.diff
are also merged already.

I’ve done some rudimentary testing: cross-built mksh (statically
and dynamically linked) and ran its own testsuite on an m68k sy-
stem, which passed with 0 errors each. So this is at least not
worse than the current state, and please include it in the next
upload.

bye,
//mirabilos

① Package build aborted though due to running out of disc space
  in the testsuite… but then, none of the changes should touch
  the amd64 native build parts.

② Although I wonder why we build the multilib stuff at all, you
  told me to not disable it, but I can’t find the 68040/68060
  optimised target libraries in the .deb packages… so they just
  take up compile time at the moment.

③ Turns out my old m68k-multilib patch was indeed correct, and
  the cpu32 and fidoa targets were incorrectly marked as having
  an MMU in gcc-4.4 (they fixed that instead so the selection
  was fine again).
-- 
08:05⎜<XTaran:#grml> mika: Does grml have an tool to read Apple
     ⎜    System Log (asl) files? :)
08:08⎜<ft:#grml> yeah. /bin/rm. ;)       08:09⎜<mrud:#grml> hexdump -C
08:31⎜<XTaran:#grml> ft, mrud: *g*
Changes to generated files (d/r control) omitted.

--- gcc-4.6-4.6.1/debian/rules.patch
+++ gcc-4.6-4.6.1/debian/rules.patch
@@ -64,7 +64,6 @@
 	alpha-no-ev4-directive \
 	boehm-gc-getnprocs \
 	note-gnu-stack \
-	m68k-allow-gnu99 \
 	libgomp-omp_h-multilib \
 	sparc-force-cpu \
 	pr24619 \
@@ -76,6 +75,7 @@
 	$(if $(with_linaro_branch),,gcc-dw2-loc-tracking) \
 	mudflap-varargs \
 	pr45078 \
+	pr43804 \
 
 #	libstdc++-nothumb-check \
 # TODO: update
--- gcc-4.6-4.6.1/debian/rules.defs
+++ gcc-4.6-4.6.1/debian/rules.defs
@@ -1176,7 +1176,7 @@
 
 # GNU locales
 force_gnu_locales := yes
-locale_no_cpus := m68k
+locale_no_cpus :=
 locale_no_systems := knetbsd-gnu
 ifneq (,$(findstring $(DEB_TARGET_GNU_SYSTEM),$(locale_no_systems)))
   force_gnu_locales := disabled for system $(DEB_TARGET_GNU_SYSTEM)
--- gcc-4.6-4.6.1/debian/changelog
+++ gcc-4.6-4.6.1/debian/changelog
@@ -1,3 +1,15 @@
+gcc-4.6 (4.6.1-1+m68k.1) unreleased; urgency=low
+
+  [ Thorsten Glaser ]
+  * Apply changes from src:gcc-4.4 for m68k support:
+    - debian/rules.defs: Remove m68k from locale_no_cpus.
+    - debian/patches/gcc-multiarch.diff: Add m68k multiarch_mappings.
+    - debian/patches/m68k-allow-gnu99.diff: Drop, we have eglibc now.
+    - debian/patches/pr43804.diff: Fix backported from SVN.
+    - debian/rules.patch: Add pr43804 and drop m68k-allow-gnu99.
+
+ -- Thorsten Glaser <tg@mirbsd.de>  Fri, 01 Jul 2011 18:39:11 +0000
+
 gcc-4.6 (4.6.1-1) unstable; urgency=low
 
   * GCC 4.6.1 release.
--- gcc-4.6-4.6.1/debian/patches/gcc-multiarch.diff
+++ gcc-4.6-4.6.1/debian/patches/gcc-multiarch.diff
@@ -7,6 +7,9 @@
 # DP:	/usr/lib/<arch>-linux-gnu
 # DP: to the system paths.
 
+2011-07-01  Thorsten Glaser <tg@debian.org>
+	* Add m68k multiarch_mappings
+
 2011-03-08  Steve Langasek <steve.langasek@linaro.org>
 	* Canonicalize x86 to i386 everywhere, not i486/i686
 
@@ -262,7 +265,7 @@
     this architecture. */
 --- a/src/gcc/multiarch.h
 +++ b/src/gcc/multiarch.h
-@@ -0,0 +1,95 @@
+@@ -0,0 +1,101 @@
 +/* Header for multiarch handling (include directories, libraries path).
 +   Copyright (C) 2009 Free Software Foundation, Inc.
 +   Contributed by Arthur Loiret <aloiret@debian.org>
@@ -336,6 +339,12 @@
 +  { "m4",  "sh4-linux-gnu" },
 +  { "m4-nofpu",  "sh4_nofpu-linux-gnu" },
 +# endif
++# if defined(__m68k_linux_gnu__)
++  { "m68040", "m68040-linux-gnu" },
++  { "m68060", "m68060-linux-gnu" },
++  { "mcpu32", "m68360-linux-gnu" },
++  { "mfidoa", "fido-linux-gnu" },
++# endif
 +#endif /* ENABLE_MULTIARCH */
 +  { 0, 0 }
 +};
reverted:
--- gcc-4.6-4.6.1/debian/patches/m68k-allow-gnu99.diff
+++ gcc-4.6-4.6.1.orig/debian/patches/m68k-allow-gnu99.diff
@@ -1,30 +0,0 @@
-# DP: patch to allow gnu99 mode on m68k
-
-On m68k, gnu99 mode doesn't work correctly out of the box due to our
-woefully outdated glibc (we're currently stuck at 2.5-1). This is
-because the inline schematics changed between glibc 2.5 and 2.7, and
-gcc 4.2 to 4.3.  This patch configures the built in spec file to pass
--fgnu89-inline, and thus allowing proper compilation and linking with
-the older glibc on m68k. This patch should not be merged upstream, and
-it should be removed once a newer glibc is available for our
-architecture.
-
----
- gcc/config/m68k/linux.h |    6 ++++++
- 1 files changed, 6 insertions(+), 0 deletions(-)
-
---- a/src/gcc/config/m68k/linux.h
-+++ b/src/gcc/config/m68k/linux.h
-@@ -36,6 +36,12 @@
- #undef M68K_HONOR_TARGET_STRICT_ALIGNMENT
- #define M68K_HONOR_TARGET_STRICT_ALIGNMENT 0
- 
-+/* on m68k, we always need to use gnu89 inlining because we're
-+   still limited to glibc 2.5. This should be removed after
-+   a newer glibc is available */
-+#undef CC1_SPEC
-+#define CC1_SPEC "%{profile:-p} %{std=gnu99:-fgnu89-inline}"
-+
- /* Here are four prefixes that are used by asm_fprintf to
-    facilitate customization for alternate assembler syntaxes.
-    Machines with no likelihood of an alternate syntax need not
--- gcc-4.6-4.6.1.orig/debian/patches/pr43804.diff
+++ gcc-4.6-4.6.1/debian/patches/pr43804.diff
@@ -0,0 +1,22 @@
+# DP: Fix for PR target/43804 backported from SVN
+
+2011-04-24  Richard Sandiford  <richard.sandiford@linaro.org>
+
+	PR target/43804
+	* config/m68k/constraints.md (T): Allow PIC operands that satisfy
+	LEGITIMATE_PIC_OPERAND_P.
+
+Index: gcc/config/m68k/constraints.md
+===================================================================
+--- a/src/gcc/config/m68k/constraints.md	(revision 172919)
++++ b/src/gcc/config/m68k/constraints.md	(revision 172920)
+@@ -94,7 +94,8 @@
+ (define_constraint "T"
+   "Used for operands that satisfy 's' when -mpcrel is not in effect."
+   (and (match_code "symbol_ref,label_ref,const")
+-       (match_test "!flag_pic")))
++       (match_test "!TARGET_PCREL")
++       (match_test "!flag_pic || LEGITIMATE_PIC_OPERAND_P (op)")))
+ 
+ (define_memory_constraint "Q"
+   "Means address register indirect addressing mode."

--- End Message ---
--- Begin Message ---
Source: gcc-4.6
Source-Version: 4.6.1-2

We believe that the bug you reported is fixed in the latest version of
gcc-4.6, which is due to be installed in the Debian FTP archive:

cpp-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/cpp-4.6_4.6.1-2_amd64.deb
fixincludes_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/fixincludes_4.6.1-2_amd64.deb
g++-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/g++-4.6-multilib_4.6.1-2_amd64.deb
g++-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/g++-4.6_4.6.1-2_amd64.deb
gcc-4.6-base_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gcc-4.6-base_4.6.1-2_amd64.deb
gcc-4.6-locales_4.6.1-2_all.deb
  to main/g/gcc-4.6/gcc-4.6-locales_4.6.1-2_all.deb
gcc-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gcc-4.6-multilib_4.6.1-2_amd64.deb
gcc-4.6-plugin-dev_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gcc-4.6-plugin-dev_4.6.1-2_amd64.deb
gcc-4.6-source_4.6.1-2_all.deb
  to main/g/gcc-4.6/gcc-4.6-source_4.6.1-2_all.deb
gcc-4.6_4.6.1-2.diff.gz
  to main/g/gcc-4.6/gcc-4.6_4.6.1-2.diff.gz
gcc-4.6_4.6.1-2.dsc
  to main/g/gcc-4.6/gcc-4.6_4.6.1-2.dsc
gcc-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gcc-4.6_4.6.1-2_amd64.deb
gccgo-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gccgo-4.6-multilib_4.6.1-2_amd64.deb
gccgo-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gccgo-4.6_4.6.1-2_amd64.deb
gfortran-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gfortran-4.6-multilib_4.6.1-2_amd64.deb
gfortran-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gfortran-4.6_4.6.1-2_amd64.deb
gobjc++-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gobjc++-4.6-multilib_4.6.1-2_amd64.deb
gobjc++-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gobjc++-4.6_4.6.1-2_amd64.deb
gobjc-4.6-multilib_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gobjc-4.6-multilib_4.6.1-2_amd64.deb
gobjc-4.6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/gobjc-4.6_4.6.1-2_amd64.deb
lib32gcc1-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gcc1-dbg_4.6.1-2_amd64.deb
lib32gcc1_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gcc1_4.6.1-2_amd64.deb
lib32gfortran3-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gfortran3-dbg_4.6.1-2_amd64.deb
lib32gfortran3_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gfortran3_4.6.1-2_amd64.deb
lib32go0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32go0-dbg_4.6.1-2_amd64.deb
lib32go0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32go0_4.6.1-2_amd64.deb
lib32gomp1-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gomp1-dbg_4.6.1-2_amd64.deb
lib32gomp1_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32gomp1_4.6.1-2_amd64.deb
lib32mudflap0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32mudflap0-dbg_4.6.1-2_amd64.deb
lib32mudflap0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32mudflap0_4.6.1-2_amd64.deb
lib32objc3-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32objc3-dbg_4.6.1-2_amd64.deb
lib32objc3_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32objc3_4.6.1-2_amd64.deb
lib32quadmath0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32quadmath0-dbg_4.6.1-2_amd64.deb
lib32quadmath0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32quadmath0_4.6.1-2_amd64.deb
lib32stdc++6-4.6-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32stdc++6-4.6-dbg_4.6.1-2_amd64.deb
lib32stdc++6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/lib32stdc++6_4.6.1-2_amd64.deb
libgcc1-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgcc1-dbg_4.6.1-2_amd64.deb
libgcc1_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgcc1_4.6.1-2_amd64.deb
libgfortran3-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgfortran3-dbg_4.6.1-2_amd64.deb
libgfortran3_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgfortran3_4.6.1-2_amd64.deb
libgo0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgo0-dbg_4.6.1-2_amd64.deb
libgo0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgo0_4.6.1-2_amd64.deb
libgomp1-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgomp1-dbg_4.6.1-2_amd64.deb
libgomp1_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libgomp1_4.6.1-2_amd64.deb
libmudflap0-4.6-dev_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libmudflap0-4.6-dev_4.6.1-2_amd64.deb
libmudflap0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libmudflap0-dbg_4.6.1-2_amd64.deb
libmudflap0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libmudflap0_4.6.1-2_amd64.deb
libobjc3-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libobjc3-dbg_4.6.1-2_amd64.deb
libobjc3_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libobjc3_4.6.1-2_amd64.deb
libquadmath0-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libquadmath0-dbg_4.6.1-2_amd64.deb
libquadmath0_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libquadmath0_4.6.1-2_amd64.deb
libstdc++6-4.6-dbg_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libstdc++6-4.6-dbg_4.6.1-2_amd64.deb
libstdc++6-4.6-dev_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libstdc++6-4.6-dev_4.6.1-2_amd64.deb
libstdc++6-4.6-doc_4.6.1-2_all.deb
  to main/g/gcc-4.6/libstdc++6-4.6-doc_4.6.1-2_all.deb
libstdc++6-4.6-pic_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libstdc++6-4.6-pic_4.6.1-2_amd64.deb
libstdc++6_4.6.1-2_amd64.deb
  to main/g/gcc-4.6/libstdc++6_4.6.1-2_amd64.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 632380@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <doko@debian.org> (supplier of updated gcc-4.6 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 ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Tue, 05 Jul 2011 10:45:56 +0200
Source: gcc-4.6
Binary: gcc-4.6-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1 libn32gcc1-dbg gcc-4.6 gcc-4.6-multilib gcc-4.6-plugin-dev gcc-4.6-hppa64 gcc-4.6-spu g++-4.6-spu gfortran-4.6-spu cpp-4.6 gcc-4.6-locales g++-4.6 g++-4.6-multilib libmudflap0 libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.6-dev libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg libquadmath0 libquadmath0-dbg lib32quadmath0 lib32quadmath0-dbg lib64quadmath0 lib64quadmath0-dbg libn32quadmath0 libn32quadmath0-dbg gobjc++-4.6 gobjc++-4.6-multilib gobjc-4.6 gobjc-4.6-multilib libobjc3 libobjc3-dbg lib64objc3 lib64objc3-dbg lib32objc3 lib32objc3-dbg libn32objc3 libn32objc3-dbg gfortran-4.6 gfortran-4.6-multilib libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg
 libn32gfortran3 libn32gfortran3-dbg gccgo-4.6 gccgo-4.6-multilib libgo0 libgo0-dbg lib64go0 lib64go0-dbg lib32go0 lib32go0-dbg libn32go0 libn32go0-dbg libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libstdc++6-4.6-dev libstdc++6-4.6-pic libstdc++6-4.6-dbg lib32stdc++6-4.6-dbg lib64stdc++6-4.6-dbg libn32stdc++6-4.6-dbg libstdc++6-4.6-doc gcc-4.6-soft-float fixincludes
 gcc-4.6-source
Architecture: source all amd64
Version: 4.6.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 cpp-4.6    - GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.6    - GNU C++ compiler
 g++-4.6-multilib - GNU C++ compiler (multilib files)
 g++-4.6-spu - SPU cross-compiler (C++ compiler)
 gcc-4.6    - GNU C compiler
 gcc-4.6-base - GCC, the GNU Compiler Collection (base package)
 gcc-4.6-hppa64 - GNU C compiler (cross compiler for hppa64)
 gcc-4.6-locales - GCC, the GNU compiler collection (native language support files)
 gcc-4.6-multilib - GNU C compiler (multilib files)
 gcc-4.6-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.6-soft-float - GCC soft-floating-point gcc libraries (arm)
 gcc-4.6-source - Source of the GNU Compiler Collection
 gcc-4.6-spu - SPU cross-compiler (preprocessor and C compiler)
 gccgo-4.6  - GNU Go compiler
 gccgo-4.6-multilib - GNU Go compiler (multilib files)
 gfortran-4.6 - GNU Fortran 95 compiler
 gfortran-4.6-multilib - GNU Fortran 95 compiler (multilib files)
 gfortran-4.6-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.6 - GNU Objective-C++ compiler
 gobjc++-4.6-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-4.6  - GNU Objective-C compiler
 gobjc-4.6-multilib - 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
 lib32go0   - Runtime library for GNU Go applications (32bit)
 lib32go0-dbg - Runtime library for GNU Go applications (32 bit debug symbols)
 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)
 lib32objc3 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc3-dbg - Runtime library for GNU Objective-C applications (32 bit debug sy
 lib32quadmath0 - GCC Quad-Precision Math Library (32bit)
 lib32quadmath0-dbg - GCC Quad-Precision Math Library (32 bit debug symbols)
 lib32stdc++6 - GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-4.6-dbg - 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
 lib64go0   - Runtime library for GNU Go applications (64bit)
 lib64go0-dbg - Runtime library for GNU Go 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)
 lib64objc3 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc3-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy
 lib64quadmath0 - GCC Quad-Precision Math Library  (64bit)
 lib64quadmath0-dbg - GCC Quad-Precision Math Library  (64bit debug symbols)
 lib64stdc++6 - GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.6-dbg - 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)
 libgo0     - Runtime library for GNU Go applications
 libgo0-dbg - Runtime library for GNU Go 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.6-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)
 libn32go0  - Runtime library for GNU Go applications (n32)
 libn32go0-dbg - Runtime library for GNU Go 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)
 libn32objc3 - Runtime library for GNU Objective-C applications (n32)
 libn32objc3-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo
 libn32quadmath0 - GCC Quad-Precision Math Library (n32)
 libn32quadmath0-dbg - GCC Quad-Precision Math Library (n32 debug symbols)
 libn32stdc++6 - GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc3   - Runtime library for GNU Objective-C applications
 libobjc3-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libquadmath0 - GCC Quad-Precision Math Library
 libquadmath0-dbg - GCC Quad-Precision Math Library (debug symbols)
 libstdc++6 - GNU Standard C++ Library v3
 libstdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.6-dev - GNU Standard C++ Library v3 (development files)
 libstdc++6-4.6-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.6-pic - GNU Standard C++ Library v3 (shared library subset kit)
Closes: 632380
Changes: 
 gcc-4.6 (4.6.1-2) unstable; urgency=medium
 .
   * Update to SVN 20110705 (r175840) from the gcc-4_6-branch.
     - Fix PR target/47997, PR c++/49528, PR c++/49440, PR c++/49418,
       PR target/44643, PR tree-optimization/49615, PR tree-optimization/49572,
       PR target/34734, PR tree-optimization/49539, PR tree-optimizations/49516,
       PR target/49089, PR rtl-optimization/49014, PR target/48273,
       PR fortran/49466, PR libfortran/49296, PR libffi/46660, PR debug/49262,
       PR rtl-optimization/49472, PR rtl-optimization/49619, PR fortran/49623,
       PR fortran/49540.
 .
   [Ludovic Brenta, Євгеній Мещеряков, Xavier Grave]
   * Adjust patches to GCC 4.6.
   * Remove patches merged upstream:
     - debian/patches/ada-arm-eabi.diff
     - debian/patches/ada-bug589164.diff
     - debian/patches/ada-bug601133.diff
     - debian/patches/ada-gnatvsn.diff
     - debian/patches/ada-mips.diff
     - debian/patches/ada-polyorb-dsa.diff
 .
   [Ludovic Brenta]
   * debian/patches/ada-acats.diff: set LD_LIBRARY_PATH, ADA_INCLUDE_PATH
     and ADA_OBJECTS_PATH so that the GNAT testsuite runs.
   * debian/patches/adalibgnat{vsn,prj}.diff,
     debian/rules.d/binary-ada.mk: install libgnat{vsn,prj}.so.* in the correct
     multiarch directory.
   * debian/control.m4, debian/rules.d/binary-ada.mk: move the SJLJ version
     of the Ada run-time library to a new package, gnat-4.6-sjlj.
   * debian/control.m4 (libgnatvsn4.6, libgnatvsn4.6-dbg, libgnatprj4.6,
     libgnatprj4.6-dbg): pre-depend on multiarch-support and add
     Multi-Arch: same.
 .
   [Nicolas Boulenguez]
   * debian/rules.d/binary-ada.mk: add gnathtml to the package gnat-4.6.
   * debian/gnat.1: remove the version number of GCC.  Mention gnathtml.
 .
   [ Matthias Klose ]
   * Do not install the spu and hppa64 cross compilers into the multiarch path.
   * Update the Linaro support to 20110704.
 .
   [ Thorsten Glaser ]
   * Apply changes from src:gcc-4.4 for m68k support. Closes: #632380.
     - debian/rules.defs: Remove m68k from locale_no_cpus.
     - debian/patches/gcc-multiarch.diff: Add m68k multiarch_mappings.
     - debian/patches/pr43804.diff: Fix backported from SVN.
     - debian/rules.patch: Add pr43804.
Checksums-Sha1: 
 cfce77efec3fd26a217b725cf165502935799c28 4178 gcc-4.6_4.6.1-2.dsc
 507a997996e9fb50fbf6444f84a684080bcd0609 699220 gcc-4.6_4.6.1-2.diff.gz
 7bb7980a0c9c9c0c37056cab5872dd01de0be842 57480736 gcc-4.6-source_4.6.1-2_all.deb
 8a6551280f8ddffd4b2292aeca1b0874f982929d 3713828 libstdc++6-4.6-doc_4.6.1-2_all.deb
 bc71a92fb6181059796746003ab2fe3e257e8f52 2600536 gcc-4.6-locales_4.6.1-2_all.deb
 ff9417e2b2a9817b4632ea469b3429f0518a6efa 131786 gcc-4.6-base_4.6.1-2_amd64.deb
 394084e879f2783cf744fc1d2b19631d2109a4ab 42906 libgcc1_4.6.1-2_amd64.deb
 b6de101463f24efdf72d164e38449d3dc32d3595 93048 libgcc1-dbg_4.6.1-2_amd64.deb
 8c5cd7be4d0928f2e33deb5f16b6757710a489e7 54124 lib32gcc1_4.6.1-2_amd64.deb
 dd0cbec6e5bc1759a89e41a329dae4cb1b5c9242 98464 lib32gcc1-dbg_4.6.1-2_amd64.deb
 c86cde1a1a12888c348bc8302b1d6cc275474a62 126090 libquadmath0_4.6.1-2_amd64.deb
 1b5232a6134ad6f92b3327b7f3ca0bb4460fe46f 149898 libquadmath0-dbg_4.6.1-2_amd64.deb
 877361b855079c89f07246fc2ac7c611511ad2d6 195288 lib32quadmath0_4.6.1-2_amd64.deb
 821b6fc30b7255d6cd3efdd10914732eaf0f5c1a 169396 lib32quadmath0-dbg_4.6.1-2_amd64.deb
 c64995ceb6ae3244989a7681a7abcd6691e69286 25730 libgomp1_4.6.1-2_amd64.deb
 e3e1fdf2a398223b64567b36fc8efcd064f72cc0 62760 libgomp1-dbg_4.6.1-2_amd64.deb
 a882eaf37df58143e3e80d936aec36b2725d22dc 28460 lib32gomp1_4.6.1-2_amd64.deb
 3b509a1ea4a93e073e1873f9a836eadd8ff53f36 62728 lib32gomp1-dbg_4.6.1-2_amd64.deb
 7478e3fbfccf44c93d5c3f8a9cfeff42c31af7a7 4786572 cpp-4.6_4.6.1-2_amd64.deb
 741b881aae1b93de2067ff3599ef8062c0112ef6 65460 fixincludes_4.6.1-2_amd64.deb
 13908a7c39a8448c3d83209acca6e462463029e2 218710 libmudflap0-4.6-dev_4.6.1-2_amd64.deb
 eb1e932c4b11ecfa4608c8b8425a432a602c375f 97864 libmudflap0_4.6.1-2_amd64.deb
 ab3d4fd1e88734d27fdd02a14adf9de795e3f389 133526 libmudflap0-dbg_4.6.1-2_amd64.deb
 b784bd4b9e176f35d25a105d5605f4732e2e74c4 88134 lib32mudflap0_4.6.1-2_amd64.deb
 e6606e4fb07e95a0b6596270d361ac71bb8f1ffa 118448 lib32mudflap0-dbg_4.6.1-2_amd64.deb
 5e2bb794c1d980617d5b475c0eaa2815fca8ecf2 870 gobjc++-4.6-multilib_4.6.1-2_amd64.deb
 fe09e90072021c52b7d0f1b02495616628ed97ad 5168758 gobjc++-4.6_4.6.1-2_amd64.deb
 93eb6f49a33310b56138a1b3d4c41e0838cd301f 199654 gobjc-4.6-multilib_4.6.1-2_amd64.deb
 fd265bea86533d8f87d797c2fe9e1ddbd31b6a44 5021922 gobjc-4.6_4.6.1-2_amd64.deb
 7856297de274e6d3bb62ad194ce4e35e69c38fcb 184808 libobjc3_4.6.1-2_amd64.deb
 62ab2d76990cb6d24116e73ed7079de1a4002a79 362794 libobjc3-dbg_4.6.1-2_amd64.deb
 79a5bf7e9446419e0ab92b1339e48940f1fd8f25 183320 lib32objc3_4.6.1-2_amd64.deb
 a6352a1293347bed23b93223a1ee6226bd58c71b 333092 lib32objc3-dbg_4.6.1-2_amd64.deb
 103999e1d0775a9fe94c6915ce1af63490e5eb89 2308336 libgo0_4.6.1-2_amd64.deb
 8460ac4e3818292a7e39dab1792ec0e51dfbdbc4 2047714 libgo0-dbg_4.6.1-2_amd64.deb
 f67e9ccc61d7cbcb3b9d76d0853e62cf9772464b 2104658 lib32go0_4.6.1-2_amd64.deb
 780b6b57b6717c972ce96ebda2b3698ee0ef8683 1574254 lib32go0-dbg_4.6.1-2_amd64.deb
 e437eec270405e2387edc601292574bd1c060f1d 8123400 gccgo-4.6_4.6.1-2_amd64.deb
 4656536e427e7a44312b015323a4fb4ba1ab95e2 2803158 gccgo-4.6-multilib_4.6.1-2_amd64.deb
 6219b102dcdab17b79a5d88c05967a05cc761ad2 1012016 g++-4.6-multilib_4.6.1-2_amd64.deb
 adf1d134a093e028cb220b5208bf7416ad9a8efb 6845260 g++-4.6_4.6.1-2_amd64.deb
 a288e44571c06844582a8c4243fc35adc10f01f8 336904 libstdc++6_4.6.1-2_amd64.deb
 1d30002985de22f41e5bb9e62bb65934b96743d6 351888 lib32stdc++6_4.6.1-2_amd64.deb
 144c58787a1b466402f7c75b0da8327014efe1c1 6698718 lib32stdc++6-4.6-dbg_4.6.1-2_amd64.deb
 e72c1b80f4fc3c02a85d8cbd60d626422118c542 1658966 libstdc++6-4.6-dev_4.6.1-2_amd64.deb
 5f9023b090fe98d6a2f8eacde9d893ca6a0f3bc9 502398 libstdc++6-4.6-pic_4.6.1-2_amd64.deb
 d44c14175046b1801e94b0317576e22442130449 4329982 libstdc++6-4.6-dbg_4.6.1-2_amd64.deb
 b99c10aefc50787d50ea303f54ede9deb72bce48 358280 libgfortran3_4.6.1-2_amd64.deb
 0924e3c0a83c5e01d1c7f46f2f134b55ac5a6115 806970 libgfortran3-dbg_4.6.1-2_amd64.deb
 841c58ddf29e8cdf3d91882dbc8de6bd832b5fcf 356212 lib32gfortran3_4.6.1-2_amd64.deb
 a67fb265c6fb6644df6062d4ac0bece3f2a76f8d 639772 lib32gfortran3-dbg_4.6.1-2_amd64.deb
 bc4c8589ca0814e5f7b3ed61cf94fc610182c51f 404872 gfortran-4.6-multilib_4.6.1-2_amd64.deb
 280f9442a6529fccd60ad1a7233ec40438589313 5551292 gfortran-4.6_4.6.1-2_amd64.deb
 cf13861fcef1aada452a2b93c32fa26aab34f8a1 2532584 gcc-4.6-multilib_4.6.1-2_amd64.deb
 144fd08462e38b2d8887d747d3e6ad3998728b9a 839948 gcc-4.6-plugin-dev_4.6.1-2_amd64.deb
 6088ab508504d3db3d311714d25cd8d2883d3acf 7329474 gcc-4.6_4.6.1-2_amd64.deb
Checksums-Sha256: 
 1d6a0f04b9ce48371c3867ef947c4484057d6bb946750856543ad7a9a372bdb2 4178 gcc-4.6_4.6.1-2.dsc
 58528fd10221eeceb5376d13fabcb05a85537a7f5679a40b669facc66f197ceb 699220 gcc-4.6_4.6.1-2.diff.gz
 9ced0f8e72cfd771fbaebd50a492d142a98e7f5f38e29fcf66b8795a1b76c639 57480736 gcc-4.6-source_4.6.1-2_all.deb
 7be52791ef00692537059a864677a728b391db43cd9423fc6eb693d015b21df5 3713828 libstdc++6-4.6-doc_4.6.1-2_all.deb
 6594be5d4abb105d5776baf68fe4dd580ea661f6db4a8ca36553d4866b86ee08 2600536 gcc-4.6-locales_4.6.1-2_all.deb
 c041278c3dd444505f58f7bcb880728c642bce7df9cfed6cddb501bad797fbc1 131786 gcc-4.6-base_4.6.1-2_amd64.deb
 374c9f98e42492def3d10235f799bc21eb1b020a08bc3e463acfe3cf30f6d1da 42906 libgcc1_4.6.1-2_amd64.deb
 0108d25fd47077ae977cb06a274b05853bf04a93a6f6da5222f7ff5d3ea309ce 93048 libgcc1-dbg_4.6.1-2_amd64.deb
 f0bb251b464369aaf210b40e86e5eec0aceab5330730b1ec35a0ecec58db1bd8 54124 lib32gcc1_4.6.1-2_amd64.deb
 c0f3bfe2b0a937a9786bd82e555c9cc419c06703babd4ade15250bff79679edc 98464 lib32gcc1-dbg_4.6.1-2_amd64.deb
 eaf0d0bf147d521bf6352d476cad384fc235d6ef05af740d7a8f088f50e5ebb9 126090 libquadmath0_4.6.1-2_amd64.deb
 7e73bf2c1c7da5a67d2b7bc76115f2b4c17628975102dfc47d89428fd7acb1d7 149898 libquadmath0-dbg_4.6.1-2_amd64.deb
 1608a3ecaff51add5d6740fc29da49faba564311922e2d50d6bf2f35125ab3eb 195288 lib32quadmath0_4.6.1-2_amd64.deb
 1a779d071b71bd83706782900ed0eb7f5f69be5d8289b875185fe7572fbab900 169396 lib32quadmath0-dbg_4.6.1-2_amd64.deb
 002aa46fefe7e306051465243599b617344cbaa7379986a8c538f8dc99f7a791 25730 libgomp1_4.6.1-2_amd64.deb
 30597e69d5a45785f2b110fea9844c51bf4b8f51d5ea89dd58f3728428923f13 62760 libgomp1-dbg_4.6.1-2_amd64.deb
 445e9162a4208cfbc5b75b7584a5a280a3465571c2dbd959e62e665bd7993cbb 28460 lib32gomp1_4.6.1-2_amd64.deb
 097c9743e6b762476405638e0e6f02f508dcff41b2c79fa5fef1c461a34fd1a0 62728 lib32gomp1-dbg_4.6.1-2_amd64.deb
 97acf2f5eeee79568308398b4a2184085de9567ab947290c034c61c67df986fb 4786572 cpp-4.6_4.6.1-2_amd64.deb
 b6a1713550cbee41fe15fb61099c98d653eecaa73cec8a716d682830610a3817 65460 fixincludes_4.6.1-2_amd64.deb
 c10cb8d1bd1ccc059c6a1b88de898d6d7025354f003d6f9c8bf108a0284ebb11 218710 libmudflap0-4.6-dev_4.6.1-2_amd64.deb
 b4fbff8d37a690b4ea76f2f317f5336c563af1822f04243cbad753127140c55b 97864 libmudflap0_4.6.1-2_amd64.deb
 3e4afe371b7933d8ffd4af5b7f43e0257827bf1301b077ccf696481dfbbbd436 133526 libmudflap0-dbg_4.6.1-2_amd64.deb
 b12f7d231a9d5e8252f72aec54f944b8eae92d1c680aa12b3187428c3c1d834a 88134 lib32mudflap0_4.6.1-2_amd64.deb
 7bde4c2eab2c8729b7ca1b4ec36d5f1078ebf4c7ce32dcb1015f9df7016f9c46 118448 lib32mudflap0-dbg_4.6.1-2_amd64.deb
 0e41a3a54da2f8f06f05ead030f6342f2c62447637deaea2d0293d99ed73b9c6 870 gobjc++-4.6-multilib_4.6.1-2_amd64.deb
 8e7bbca55b80806aec45e4df2f0584b81a92c5eb4f99709bfe1ba11bc1abb12d 5168758 gobjc++-4.6_4.6.1-2_amd64.deb
 fc35e29646c6b97bea5bcee4de8c68078033911b6c8f6993533f21d34ceaad00 199654 gobjc-4.6-multilib_4.6.1-2_amd64.deb
 8448565c75716969d6b9b59eda53e40da876f69ab1cf455eac1b22f43c86cf01 5021922 gobjc-4.6_4.6.1-2_amd64.deb
 1a79ccfb3b33976d121aeb026e98fe454cfb9734c69c6cf83a05a224fef861f6 184808 libobjc3_4.6.1-2_amd64.deb
 c08bfce3de485d7145febb893f49caa927bb2241bb12c844bb3669a1f3c795f5 362794 libobjc3-dbg_4.6.1-2_amd64.deb
 ea9d355b88cb4621a28648163698ae2daa40d0ec6548f3b4029d6f0e3f33cc32 183320 lib32objc3_4.6.1-2_amd64.deb
 9a4cd411c90455dd79ac0798911574dbf198010244bfe9da49a824448ed79d6a 333092 lib32objc3-dbg_4.6.1-2_amd64.deb
 58c0c32d7e0bad3983c8544f935a97339cee1d8539793cb960064a50956db75d 2308336 libgo0_4.6.1-2_amd64.deb
 4527811efcc67ada4513c3e4356c07a0d4cd4fea492d42a5252862c62aab5126 2047714 libgo0-dbg_4.6.1-2_amd64.deb
 51cd19e3c5d71578a71790432875546c207983bfd1798eef9f02a2252f699284 2104658 lib32go0_4.6.1-2_amd64.deb
 4f6c81317083a675a378fc33362be38da78e60418b55b5e515f34145e9470570 1574254 lib32go0-dbg_4.6.1-2_amd64.deb
 b94c42b9cfabbe200e91ceb9c9c35a8b32dd0074b95a70440927b78d69747f91 8123400 gccgo-4.6_4.6.1-2_amd64.deb
 6edf7dd762c5c6bde66a8d362e5e5d947b92fbd3c1c99e5f24ca902a708411c0 2803158 gccgo-4.6-multilib_4.6.1-2_amd64.deb
 9315fd2068bd8f2b7c1d7f0dc3688f4fbfcfe5d9cbc8b6d61bc16e12b8df651f 1012016 g++-4.6-multilib_4.6.1-2_amd64.deb
 36daa32a0a2a7e165b21eb4b8c9cde4b9cd4095d565599ed3df22e5ad8d4a8f7 6845260 g++-4.6_4.6.1-2_amd64.deb
 65a4d7baac5f2efc68930a72647c3ba4fe00cb5f2e49d8850050c81bc1ef6fe4 336904 libstdc++6_4.6.1-2_amd64.deb
 5934c2fdec64d44a4d4f1b33d57d670550f87170f8390ce5cd54c3e1c5b9713d 351888 lib32stdc++6_4.6.1-2_amd64.deb
 872c9d6fcdcd6f206c812ed498d138fa2a00c89de21ba674c6028f9a44bdbf07 6698718 lib32stdc++6-4.6-dbg_4.6.1-2_amd64.deb
 ccb8341e584a95bde345f2332e4ccf135e075622cbd9332843fa71ea60a67eed 1658966 libstdc++6-4.6-dev_4.6.1-2_amd64.deb
 b89f91fde86cc3fa355fb42edfa7446ae40640a1c68b71ed820d6ba1ece9cd56 502398 libstdc++6-4.6-pic_4.6.1-2_amd64.deb
 16b57e206ae77006897c70a06b52b4ed40d67a996c5a432789a06d041716292f 4329982 libstdc++6-4.6-dbg_4.6.1-2_amd64.deb
 9ca04936a3df763411f218661098470d2710461276b4b1d26a280d6ccc1d63f6 358280 libgfortran3_4.6.1-2_amd64.deb
 d151e81915b30fbc26f01a85754133cbd092153400d7ead54fdf104f280e919c 806970 libgfortran3-dbg_4.6.1-2_amd64.deb
 46c9d53ab3bde4d3036780fbbeef3421dc6d9103ed72f46c47e4e1ac4bb9ad69 356212 lib32gfortran3_4.6.1-2_amd64.deb
 c2f4970b12e071b3b6beb65aa8c29c825be2e3d8bf7a86022d815eb16e30f4cd 639772 lib32gfortran3-dbg_4.6.1-2_amd64.deb
 8e69322f3bf211f86a3f31e0d6e5ee7c8a04c3330c077e68f4c5c981aa2f0b46 404872 gfortran-4.6-multilib_4.6.1-2_amd64.deb
 8ef3d7a0d8fab11ff23e0be7259f02bfa8c7957d0cdbb087b222d55ce4e71c37 5551292 gfortran-4.6_4.6.1-2_amd64.deb
 8bc41dc886f7921ef0dae13aeb79b91b26db9e66854055c1220b82c8401e1f9e 2532584 gcc-4.6-multilib_4.6.1-2_amd64.deb
 61db4dd12e18c972b815a7ae0b2d42e16c535c06679b7671f70826e73d4771ca 839948 gcc-4.6-plugin-dev_4.6.1-2_amd64.deb
 2c5a7a29cabe0de8ecd9c3de8e4234b00f498f04b7dea477a24206c53c8299aa 7329474 gcc-4.6_4.6.1-2_amd64.deb
Files: 
 21c6bdf128e9f8c45fd499760290ebc3 4178 devel optional gcc-4.6_4.6.1-2.dsc
 8a6ac1aea4931dadb7618e6d0cbbeab3 699220 devel optional gcc-4.6_4.6.1-2.diff.gz
 6ff611ff85a4a713e75c373a363f0ff4 57480736 devel optional gcc-4.6-source_4.6.1-2_all.deb
 d9388abe88ef1423bac21821999e6e2b 3713828 doc optional libstdc++6-4.6-doc_4.6.1-2_all.deb
 d60f3587e2476529d398fdd7c76880ba 2600536 devel optional gcc-4.6-locales_4.6.1-2_all.deb
 8c016a36ca7403dec4d9356872f2a123 131786 libs required gcc-4.6-base_4.6.1-2_amd64.deb
 0bda8bf522437c7cd1eb05257bb0a8e0 42906 libs required libgcc1_4.6.1-2_amd64.deb
 e928b32c8923033d2141460df57848e8 93048 debug extra libgcc1-dbg_4.6.1-2_amd64.deb
 4cbee02d6bfadec6cc280f8f86dff43f 54124 libs extra lib32gcc1_4.6.1-2_amd64.deb
 def46863d66366127d8c3dbc9980a9f6 98464 debug extra lib32gcc1-dbg_4.6.1-2_amd64.deb
 b3925ab3101973d3a46c8e40eb2bc957 126090 libs optional libquadmath0_4.6.1-2_amd64.deb
 85ca331353b88e22a76bdb04078f6870 149898 debug extra libquadmath0-dbg_4.6.1-2_amd64.deb
 06d85e902e0343b5bfbd7a8369a51bce 195288 libs optional lib32quadmath0_4.6.1-2_amd64.deb
 a228db02198be4f5e97b3157c1963953 169396 debug extra lib32quadmath0-dbg_4.6.1-2_amd64.deb
 2cdc93bbeac0f67192abd151268ef68d 25730 libs optional libgomp1_4.6.1-2_amd64.deb
 db0102e944cefd16dd970d9f974d21b1 62760 debug extra libgomp1-dbg_4.6.1-2_amd64.deb
 86f646126162a5801ec246ca794daf83 28460 libs optional lib32gomp1_4.6.1-2_amd64.deb
 1748f526a7b591caf42e9d0cf9230ae3 62728 debug extra lib32gomp1-dbg_4.6.1-2_amd64.deb
 726f3415041f542294a552b3fc9b9689 4786572 interpreters optional cpp-4.6_4.6.1-2_amd64.deb
 7b66c74bbe4e4ba25203dcf2af62c5b5 65460 devel optional fixincludes_4.6.1-2_amd64.deb
 9cc1e424e43f2bbc769c1568e2b6d7c4 218710 libdevel optional libmudflap0-4.6-dev_4.6.1-2_amd64.deb
 da1076517246f0ab73261fd36272463e 97864 libs optional libmudflap0_4.6.1-2_amd64.deb
 00dfe565769018ded1951706d9734cf4 133526 debug extra libmudflap0-dbg_4.6.1-2_amd64.deb
 f118d38dd7dc04d947fd1cc7ce3272b6 88134 libs optional lib32mudflap0_4.6.1-2_amd64.deb
 de2f8fe90dc5e92bfe8bae1e307d7cee 118448 debug extra lib32mudflap0-dbg_4.6.1-2_amd64.deb
 c54051d968f41ea20e3ea5c99d3451a7 870 devel optional gobjc++-4.6-multilib_4.6.1-2_amd64.deb
 61e41c3803f2a22cd7ce3f38bcf549e2 5168758 devel optional gobjc++-4.6_4.6.1-2_amd64.deb
 67a73b52d9f323238393a51d2386b052 199654 devel optional gobjc-4.6-multilib_4.6.1-2_amd64.deb
 157de838a60d7cfd02b1fdcdb2450d2e 5021922 devel optional gobjc-4.6_4.6.1-2_amd64.deb
 c45200a348c162175f23413aefd1cd28 184808 libs optional libobjc3_4.6.1-2_amd64.deb
 c48dacd79be07dcf513ed9f883b84f4e 362794 debug extra libobjc3-dbg_4.6.1-2_amd64.deb
 2b386f7d6ca221614d0b28e6f162b5b9 183320 libs optional lib32objc3_4.6.1-2_amd64.deb
 053a24961c1124d26cfc002c8bde8561 333092 debug extra lib32objc3-dbg_4.6.1-2_amd64.deb
 243d14fb00e5cd35feaabd2616809d5d 2308336 libs optional libgo0_4.6.1-2_amd64.deb
 a2115c97ea7ad4319bb6aa1eda9be1e3 2047714 debug extra libgo0-dbg_4.6.1-2_amd64.deb
 ffc7cf4dd9a2ceff532cf0a52ce04829 2104658 libs optional lib32go0_4.6.1-2_amd64.deb
 7c5a13bea5bc2c2e3cceaeb3741ef329 1574254 debug extra lib32go0-dbg_4.6.1-2_amd64.deb
 789b21ba01f425d99c3bea8bf4ef6234 8123400 devel optional gccgo-4.6_4.6.1-2_amd64.deb
 bc8a7e521d5761f200b9787ab78c61f6 2803158 devel optional gccgo-4.6-multilib_4.6.1-2_amd64.deb
 68471ee42b7529affc03f74a90ecb6b6 1012016 devel optional g++-4.6-multilib_4.6.1-2_amd64.deb
 ef2ab8a4c0fedcb95097c78b1ef6b06d 6845260 devel optional g++-4.6_4.6.1-2_amd64.deb
 c3464c8469876c9ac02f847106de1a84 336904 libs required libstdc++6_4.6.1-2_amd64.deb
 f9301d5cd96b773e89af7a361ab52aa6 351888 libs extra lib32stdc++6_4.6.1-2_amd64.deb
 73932f8fdffeed9349ac9ceda67c3ae4 6698718 debug extra lib32stdc++6-4.6-dbg_4.6.1-2_amd64.deb
 92bd30f73d6c06a0f40bc33a6a5ae1bd 1658966 libdevel optional libstdc++6-4.6-dev_4.6.1-2_amd64.deb
 4ea5c7fc82879366a986e77d681f35df 502398 libdevel extra libstdc++6-4.6-pic_4.6.1-2_amd64.deb
 81664047c3fde2980404ccfa6b1342c6 4329982 debug extra libstdc++6-4.6-dbg_4.6.1-2_amd64.deb
 4571d63c60c97332f5c7743fe056cebe 358280 libs optional libgfortran3_4.6.1-2_amd64.deb
 3a1fb2dbcdb4ad7bca0bbdcd5a7ffcd4 806970 debug extra libgfortran3-dbg_4.6.1-2_amd64.deb
 06b06324d745d41aaab0b29cba820f0f 356212 libs optional lib32gfortran3_4.6.1-2_amd64.deb
 6b9c827f7df1f6e155f54516e9e18b0c 639772 debug extra lib32gfortran3-dbg_4.6.1-2_amd64.deb
 ef034ade1f750559e47e47dca6bcfda8 404872 devel optional gfortran-4.6-multilib_4.6.1-2_amd64.deb
 25e30e9a9f00fe1046ea60bc2b38347c 5551292 devel optional gfortran-4.6_4.6.1-2_amd64.deb
 1c8662ceb31422729e4dfbbf39532908 2532584 devel optional gcc-4.6-multilib_4.6.1-2_amd64.deb
 9c8b6e1ac8d089d3e544dcdf22982b8f 839948 devel optional gcc-4.6-plugin-dev_4.6.1-2_amd64.deb
 a7905ed5a4006a21b31f1f4d9cdbc7c5 7329474 devel optional gcc-4.6_4.6.1-2_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)

iEYEARECAAYFAk4TJXYACgkQStlRaw+TLJxDFACfSNyfdQR0H+GKTSbQMq2YLLpD
4EAAoJrt6uJmxduVbofoWDNhYqzVQvJ+
=6NIg
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: