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

Bug#576864: marked as done (gfortran-4.4 does not support -Wp, -MD for *.F (4.4 regression, needed for auto-dependencies))



Your message dated Tue, 17 Aug 2010 08:33:11 +0000
with message-id <E1OlHbb-0001rL-M8@franck.debian.org>
and subject line Bug#576864: fixed in gcc-4.4 4.4.4-9
has caused the Debian Bug report #576864,
regarding gfortran-4.4 does not support -Wp, -MD  for *.F (4.4 regression, needed for auto-dependencies)
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.)


-- 
576864: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=576864
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: gfortran-4.4
Version: 4.4.2-9
Severity: normal

Hello,

Like with gcc and g++, for compiling .F sources with gfortran, I
thankfully use automatic dependencies generator built into gcc's cpp.

E.g. for

    $ cat test.F
    #include "test.h"

          program test
          print *,'Hello World!'
          print *,ZZZ
          end

    $ cat test.h
    #define ZZZ 'Hello up there qqq!'

gfortran-4.3 correctly generates .d file for make:

    $ gfortran-4.3 -Wp,-MD,test.d test.F
    $ cat test.d
    test.o: test.F test.h

but gfortran-4.4 fails:

    $ rm test.d
    $ gfortran-4.4 -Wp,-MD,test.d test.F
    f951: warning: command line option "-MD" is valid for C/C++/ObjC/ObjC++ but not for Fortran
    $ cat test.d
    cat: test.d: No such file or directory


I think gfortran-4.4 behaviour is incorrect, since .F files (contrast
with .f) by definition should be passed through preprocessor, and if so,
why dropping automatic dependencies generation which worked in 4.3?


I guess the regression is somehow related to the fact, that starting from
gcc-4.4, "GNU Fortran now employs libcpp directly instead of
using cc1 as an external preprocessor." [1]

    $ gfortran-4.3 -v -Wp,-MD,test.d test.F
    Driving: gfortran-4.3 -v -Wp,-MD,test.d test.F -lgfortranbegin -lgfortran -lm -shared-libgcc
    ...
    gcc version 4.3.4 (Debian 4.3.4-6)
    COLLECT_GCC_OPTIONS='-v' '-shared-libgcc' '-mtune=generic'
     /usr/lib/gcc/i486-linux-gnu/4.3.4/cc1 -E -lang-fortran -traditional-cpp -D_LANGUAGE_FORTRAN -quiet -v -MD test.d test.F -mtune=generic -o /tmp/cclR3nYK.f
    ...
     /usr/lib/gcc/i486-linux-gnu/4.3.4/f951 /tmp/cclR3nYK.f -ffixed-form -quiet -dumpbase test.F -mtune=generic -auxbase test -version -fpreprocessed -fintrinsic-modules-path /usr/lib/gcc/i486-linux-gnu/4.3.4/finclude -o /tmp/cc0ZnWFl.s


(compare to)


    $ gfortran-4.4 -v -Wp,-MD,test.d test.F
    Driving: gfortran-4.4 -v -Wp,-MD,test.d test.F -lgfortranbegin -lgfortran -lm -shared-libgcc
    ...
    gcc version 4.4.3 20100108 (prerelease) (Debian 4.4.2-9)
    COLLECT_GCC_OPTIONS='-v' '-shared-libgcc' '-mtune=generic' '-march=i486'
     /usr/lib/gcc/i486-linux-gnu/4.4.3/f951 test.F -ffixed-form -cpp /tmp/ccE2JRYl.f90 -quiet -v -MD test.d test.F -quiet -dumpbase test.F -mtune=generic -march=i486 -auxbase test -version -fintrinsic-modules-path /usr/lib/gcc/i486-linux-gnu/4.4.3/finclude -o /tmp/ccwptNMx.s
    f951: warning: command line option "-MD" is valid for C/C++/ObjC/ObjC++ but not for Fortran



And since -MD was declared to be C/C++/ObjC/ObjC++ only option for ages
(at least since 2003-06-01 d821d2 in gcc.git), now for 4.4. it does not
work. It worked for 4.3 because there `cc1 -E` is explicitly called as
separate step... And for 4.4. calling cc1 explicitly works too

    $ /usr/lib/gcc/i486-linux-gnu/4.4.3/cc1 -E -D_LANGUAGE_FORTRAN -quiet -v -MD test.d test.F -o test.f
    $ cat test.d
    test.o: test.F test.h

but is of no help because cc1 is internal.

--------

Clearly this is functional regression to me. If possible please fix.


Thanks beforehand,
Kirill


[1] http://gcc.gnu.org/gcc-4.4/changes.html
[2] http://git.infradead.org/gcc.git/commit/d821d2e95e00a93f2edb5f6d3decc9c83ceb9c61

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32.11-roro (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gfortran-4.4 depends on:
ii  gcc-4.4                   4.4.2-9        The GNU C compiler
ii  gcc-4.4-base              4.4.2-9        The GNU Compiler Collection (base 
ii  libc6                     2.10.2-6       Embedded GNU C Library: Shared lib
ii  libc6-dev                 2.10.2-6       Embedded GNU C Library: Developmen
ii  libgfortran3              4.4.2-9        Runtime library for GNU Fortran ap
ii  libgmp3c2                 2:4.3.2+dfsg-1 Multiprecision arithmetic library
ii  libmpfr1ldbl              2.4.2-3        multiple precision floating-point 

gfortran-4.4 recommends no packages.

Versions of packages gfortran-4.4 suggests:
pn  gfortran-4.4-doc              <none>     (no description available)
pn  gfortran-4.4-multilib         <none>     (no description available)
pn  libgfortran3-dbg              <none>     (no description available)

-- no debconf information



--- End Message ---
--- Begin Message ---
Source: gcc-4.4
Source-Version: 4.4.4-9

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

cpp-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/cpp-4.4_4.4.4-9_amd64.deb
fixincludes_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/fixincludes_4.4.4-9_amd64.deb
g++-4.4-multilib_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/g++-4.4-multilib_4.4.4-9_amd64.deb
g++-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/g++-4.4_4.4.4-9_amd64.deb
gcc-4.4-base_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gcc-4.4-base_4.4.4-9_amd64.deb
gcc-4.4-locales_4.4.4-9_all.deb
  to main/g/gcc-4.4/gcc-4.4-locales_4.4.4-9_all.deb
gcc-4.4-multilib_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gcc-4.4-multilib_4.4.4-9_amd64.deb
gcc-4.4-source_4.4.4-9_all.deb
  to main/g/gcc-4.4/gcc-4.4-source_4.4.4-9_all.deb
gcc-4.4_4.4.4-9.diff.gz
  to main/g/gcc-4.4/gcc-4.4_4.4.4-9.diff.gz
gcc-4.4_4.4.4-9.dsc
  to main/g/gcc-4.4/gcc-4.4_4.4.4-9.dsc
gcc-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gcc-4.4_4.4.4-9_amd64.deb
gfortran-4.4-multilib_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gfortran-4.4-multilib_4.4.4-9_amd64.deb
gfortran-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gfortran-4.4_4.4.4-9_amd64.deb
gobjc++-4.4-multilib_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gobjc++-4.4-multilib_4.4.4-9_amd64.deb
gobjc++-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gobjc++-4.4_4.4.4-9_amd64.deb
gobjc-4.4-multilib_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gobjc-4.4-multilib_4.4.4-9_amd64.deb
gobjc-4.4_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/gobjc-4.4_4.4.4-9_amd64.deb
lib32gcc1-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gcc1-dbg_4.4.4-9_amd64.deb
lib32gcc1_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gcc1_4.4.4-9_amd64.deb
lib32gfortran3-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gfortran3-dbg_4.4.4-9_amd64.deb
lib32gfortran3_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gfortran3_4.4.4-9_amd64.deb
lib32gomp1-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gomp1-dbg_4.4.4-9_amd64.deb
lib32gomp1_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32gomp1_4.4.4-9_amd64.deb
lib32mudflap0-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32mudflap0-dbg_4.4.4-9_amd64.deb
lib32mudflap0_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32mudflap0_4.4.4-9_amd64.deb
lib32objc2-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32objc2-dbg_4.4.4-9_amd64.deb
lib32objc2_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32objc2_4.4.4-9_amd64.deb
lib32stdc++6-4.4-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32stdc++6-4.4-dbg_4.4.4-9_amd64.deb
lib32stdc++6_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/lib32stdc++6_4.4.4-9_amd64.deb
libgcc1-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgcc1-dbg_4.4.4-9_amd64.deb
libgcc1_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgcc1_4.4.4-9_amd64.deb
libgfortran3-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgfortran3-dbg_4.4.4-9_amd64.deb
libgfortran3_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgfortran3_4.4.4-9_amd64.deb
libgomp1-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgomp1-dbg_4.4.4-9_amd64.deb
libgomp1_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libgomp1_4.4.4-9_amd64.deb
libmudflap0-4.4-dev_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libmudflap0-4.4-dev_4.4.4-9_amd64.deb
libmudflap0-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libmudflap0-dbg_4.4.4-9_amd64.deb
libmudflap0_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libmudflap0_4.4.4-9_amd64.deb
libobjc2-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libobjc2-dbg_4.4.4-9_amd64.deb
libobjc2_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libobjc2_4.4.4-9_amd64.deb
libstdc++6-4.4-dbg_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libstdc++6-4.4-dbg_4.4.4-9_amd64.deb
libstdc++6-4.4-dev_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libstdc++6-4.4-dev_4.4.4-9_amd64.deb
libstdc++6-4.4-doc_4.4.4-9_all.deb
  to main/g/gcc-4.4/libstdc++6-4.4-doc_4.4.4-9_all.deb
libstdc++6-4.4-pic_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libstdc++6-4.4-pic_4.4.4-9_amd64.deb
libstdc++6_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/libstdc++6_4.4.4-9_amd64.deb
protoize_4.4.4-9_amd64.deb
  to main/g/gcc-4.4/protoize_4.4.4-9_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 576864@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.4 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, 17 Aug 2010 02:14:08 +0200
Source: gcc-4.4
Binary: gcc-4.4-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4 libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1 libn32gcc1-dbg gcc-4.4 gcc-4.4-multilib gcc-4.4-hppa64 gcc-4.4-spu g++-4.4-spu gfortran-4.4-spu cpp-4.4 gcc-4.4-locales g++-4.4 g++-4.4-multilib libmudflap0 libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.4-dev libgomp1 libgomp1-dbg lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg protoize gobjc++-4.4 gobjc++-4.4-multilib gobjc-4.4 gobjc-4.4-multilib libobjc2 libobjc2-dbg lib64objc2 lib64objc2-dbg lib32objc2 lib32objc2-dbg libn32objc2 libn32objc2-dbg gfortran-4.4 gfortran-4.4-multilib libgfortran3 libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libstdc++6 lib32stdc++6 lib64stdc++6 libn32stdc++6 libstdc++6-4.4-dev libstdc++6-4.4-pic libstdc++6-4.4-dbg
 lib32stdc++6-4.4-dbg lib64stdc++6-4.4-dbg libn32stdc++6-4.4-dbg libstdc++6-4.4-doc gcc-4.4-soft-float fixincludes
 gcc-4.4-source
Architecture: source all amd64
Version: 4.4.4-9
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 cpp-4.4    - The GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.4    - The GNU C++ compiler
 g++-4.4-multilib - The GNU C++ compiler (multilib files)
 g++-4.4-spu - SPU cross-compiler (C++ compiler)
 gcc-4.4    - The GNU C compiler
 gcc-4.4-base - The GNU Compiler Collection (base package)
 gcc-4.4-hppa64 - The GNU C compiler (cross compiler for hppa64)
 gcc-4.4-locales - The GNU C compiler (native language support files)
 gcc-4.4-multilib - The GNU C compiler (multilib files)
 gcc-4.4-soft-float - The soft-floating-point gcc libraries (arm)
 gcc-4.4-source - Source of the GNU Compiler Collection
 gcc-4.4-spu - SPU cross-compiler (preprocessor and C compiler)
 gfortran-4.4 - The GNU Fortran 95 compiler
 gfortran-4.4-multilib - The GNU Fortran 95 compiler (multilib files)
 gfortran-4.4-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.4 - The GNU Objective-C++ compiler
 gobjc++-4.4-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.4  - The GNU Objective-C compiler
 gobjc-4.4-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.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug symbols
 lib64gomp1 - GCC OpenMP (GOMP) support library (64bit)
 lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols)
 lib64mudflap0 - GCC mudflap shared support libraries (64bit)
 lib64mudflap0-dbg - GCC mudflap shared support libraries (64 bit debug symbols)
 lib64objc2 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc2-dbg - Runtime library for GNU Objective-C applications (64 bit debug sy
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libgcc1    - GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgcc2    - GCC support library
 libgcc2-dbg - GCC support library (debug symbols)
 libgcc4    - GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-4.4-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran3 - Runtime library for GNU Fortran applications (n32)
 libn32gfortran3-dbg - Runtime library for GNU Fortran applications (n32 debug symbols)
 libn32gomp1 - GCC OpenMP (GOMP) support library (n32)
 libn32gomp1-dbg - GCC OpenMP (GOMP) support library (n32 debug symbols)
 libn32mudflap0 - GCC mudflap shared support libraries (n32)
 libn32mudflap0-dbg - GCC mudflap shared support libraries (n32 debug symbols)
 libn32objc2 - Runtime library for GNU Objective-C applications (n32)
 libn32objc2-dbg - Runtime library for GNU Objective-C applications (n32 debug symbo
 libn32stdc++6 - The GNU Standard C++ Library v3 (n32)
 libn32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libobjc2   - Runtime library for GNU Objective-C applications
 libobjc2-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libstdc++6 - The GNU Standard C++ Library v3
 libstdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.4-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.4-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.4-pic - The GNU Standard C++ Library v3 (shared library subset kit)
 protoize   - Create/remove ANSI prototypes from C code
Closes: 576864 585925 588381
Changes: 
 gcc-4.4 (4.4.4-9) unstable; urgency=medium
 .
   * Update to SVN 20100816 from the gcc-4_4-branch (r163287).
     - Fix PR middle-end/45262, PR middle-end/41551, PR target/44805,
       PR tree-optimization/45109, PR target/44942,
       PR middle-end/44632 (closes: #585925),
       PR fortran/31588, PR fortran/43954 (closes: #576864), PR fortran/44660.
 .
   [ Matthias Klose ]
   * Allow overwriting of the PF macro used in the build from the environment
     (Jim Heck). Closes: #588381.
   * Fix libc-dbg build dependency for java enabled builds. Addresses: #591424.
   * gnat-snapshot-build-fix.diff: Let gnat-4.4 build with gnat snapshots
     from the trunk (20100803).
   * On amd64 and i386, stop building packages built from the gcc-4.5 sources.
   * gcj: Align data in .rodata.jutf8.* sections, patch taken from the trunk.
   * Add the complete packaging to the -source package. LP: #608650.
   * Drop the gcc-ix86-asm-generic32.diff patch.
   * Bump version for intra-package dependencies. Addresses: #589337.
   * Tighten (build-) dependency on cloog-ppl (>= 0.15.9-2).
 .
   [ Steve Langasek ]
   * s,/lib/,/$(libdir)/, throughout debian/rules*; a no-op in the current
     case, but required for us to find the libraries when building for
     multiarch
   * Don't append multiarch paths to any multilib paths except for the default;
     our biarch (multilib) builds need to remain independent of multiarch in
     the near term, so we want to make sure we can find /usr/lib32 without
     /usr/lib/i486-linux-gnu being available.
   * debian/control.m4, debian/rules.conf: conditionally set packages to be
     Multi-Arch: yes when MULTIARCH is defined.
 .
   [ Marcin Juszkiewicz ]
   * Allow building intermediate stages for cross builds. LP: #603497.
Checksums-Sha1: 
 2d6d6cbeab32b2fb8eaf4dc61150e56ed1644b2c 3702 gcc-4.4_4.4.4-9.dsc
 fdd880c5d1360e1353031a87e1b67482586d39bb 752308 gcc-4.4_4.4.4-9.diff.gz
 8211bace480d408603829aa03bf0a384274d2b03 55079574 gcc-4.4-source_4.4.4-9_all.deb
 d1f82ae29f9385cc5bc2546b94500a851aa1607d 16747266 libstdc++6-4.4-doc_4.4.4-9_all.deb
 6450ce0e699863b1de1cd299b8314771fb2fcc2d 2298594 gcc-4.4-locales_4.4.4-9_all.deb
 f149654793e5323f6a22382306d5af611a6f57c9 119024 gcc-4.4-base_4.4.4-9_amd64.deb
 b8d062816879982169c2be5d8e4f9a0ca1c8ea4b 45036 libgcc1_4.4.4-9_amd64.deb
 3d59f9b3f4748f583511aa757a3f9eaf827dfafe 83172 libgcc1-dbg_4.4.4-9_amd64.deb
 433628c55cbd9eee3a7ff8ceae9b2a4555190cd8 55206 lib32gcc1_4.4.4-9_amd64.deb
 9f8cd0401308b47ac17ec5fe1d4b91776de02c96 78018 lib32gcc1-dbg_4.4.4-9_amd64.deb
 d39a28781a295a6f6f4846badb3a5d2e0ec671e8 25308 libgomp1_4.4.4-9_amd64.deb
 6991956311dfaad392ff7838a298dfc0921a64f5 58876 libgomp1-dbg_4.4.4-9_amd64.deb
 c40912613de51559c94226e9767cbf9729ff23f6 24690 lib32gomp1_4.4.4-9_amd64.deb
 79ac24c60c7043bdd093ae479afcf4264173eda1 62362 lib32gomp1-dbg_4.4.4-9_amd64.deb
 86a518dc48627393d1c6304835af999153bdad82 3870770 cpp-4.4_4.4.4-9_amd64.deb
 84c693c906db9694409da78ab6305549f09d1fe4 46952 protoize_4.4.4-9_amd64.deb
 7f5bbba1ebd41fb745e93ebbb3977abb329c9187 62266 fixincludes_4.4.4-9_amd64.deb
 51bc0c0e56afaf1dfb5f5e2d9d09e055e14f3e82 215524 libmudflap0-4.4-dev_4.4.4-9_amd64.deb
 68656c5dfb64731e63eeb237df8c439c5721a8e9 98130 libmudflap0_4.4.4-9_amd64.deb
 0cf10329a19e7394c015c4623d819a9dd14729a1 122480 libmudflap0-dbg_4.4.4-9_amd64.deb
 6f381609177f9aa63fa4e887adf73eaf9cfe51aa 81936 lib32mudflap0_4.4.4-9_amd64.deb
 1a2da3c6777df04a1bb99535dc70109887534dda 120104 lib32mudflap0-dbg_4.4.4-9_amd64.deb
 67277653a4812d63a3867dd018ef5a0cd4da0f40 870 gobjc++-4.4-multilib_4.4.4-9_amd64.deb
 2550a08e77d208b244493c59c0b7ab2fee4d5b15 4148878 gobjc++-4.4_4.4.4-9_amd64.deb
 6ee77edf7133ddd28072741c29ecc8c8c52fa4d4 167708 gobjc-4.4-multilib_4.4.4-9_amd64.deb
 f918ca818ca29c1c0a6adc487ef7cb74aa2d9687 4027420 gobjc-4.4_4.4.4-9_amd64.deb
 704cd1f42fd0d9474968950fdc8edc743c82e02a 160616 libobjc2_4.4.4-9_amd64.deb
 431c293d4059556f4227182da142fb637ae817ea 278746 libobjc2-dbg_4.4.4-9_amd64.deb
 06973429b360a2ab1a99a0d188804398a00d9410 154908 lib32objc2_4.4.4-9_amd64.deb
 f8a927e49d4a894e479ce7008eec17725060bef5 265344 lib32objc2-dbg_4.4.4-9_amd64.deb
 e859e910f123a215c3b7b4bf9ddf570227526e34 1009586 g++-4.4-multilib_4.4.4-9_amd64.deb
 be81545fb3674abf86268afda3a1fe2870005c94 5499136 g++-4.4_4.4.4-9_amd64.deb
 1df4dba0748591ceb51a4021a3d1a1178492d840 341212 libstdc++6_4.4.4-9_amd64.deb
 e5a14d743734b786d22b0b8e33352046faae46bb 347406 lib32stdc++6_4.4.4-9_amd64.deb
 c031d7999a0db53002fbfd2d9ca60d643f1fa763 6308430 lib32stdc++6-4.4-dbg_4.4.4-9_amd64.deb
 b8a02f6ba2aab39cf6963e3ffdcadba3cf649005 1560312 libstdc++6-4.4-dev_4.4.4-9_amd64.deb
 32b3715a86fcbea4800b27d8c95f32ad9c646fb7 513446 libstdc++6-4.4-pic_4.4.4-9_amd64.deb
 d056c4c264799088f04a52be6e22a12c4848f3b4 3964166 libstdc++6-4.4-dbg_4.4.4-9_amd64.deb
 d363a80363801b357b81d32e213f456c1c77fa61 291330 libgfortran3_4.4.4-9_amd64.deb
 7c32ebf38318145ef06843eea8cdcb3899dc8902 501724 libgfortran3-dbg_4.4.4-9_amd64.deb
 1ba3a72924db2183c552c8b02ab2b6cac00d570f 238772 lib32gfortran3_4.4.4-9_amd64.deb
 2c004b5ce73b0db42187df296218e23bf5befdaf 388264 lib32gfortran3-dbg_4.4.4-9_amd64.deb
 1776da043e0f5968e6de66fc894c02c24fb9d505 268270 gfortran-4.4-multilib_4.4.4-9_amd64.deb
 9cffb4b4fd0b0736ec3aeb2bff6f930bc23ca6e2 4438852 gfortran-4.4_4.4.4-9_amd64.deb
 fe1f67c361a825a75b07e7bf8331310957a1456d 2332726 gcc-4.4-multilib_4.4.4-9_amd64.deb
 e3df744c858d6f5d339a76018785875a4962447f 2686506 gcc-4.4_4.4.4-9_amd64.deb
Checksums-Sha256: 
 d9937fc2305c3e60c395334ed4813ca8a60d711de80fbf9a14f6eeaecb71d516 3702 gcc-4.4_4.4.4-9.dsc
 74025f21072066d10e2625a2d00af1ed462c002c7bc65eafbd0547fe4cf703f5 752308 gcc-4.4_4.4.4-9.diff.gz
 9efdc6133d8563a6bbe1f190992a406dd9d0716222019358f14d97e9a9e19c22 55079574 gcc-4.4-source_4.4.4-9_all.deb
 6a0c3e51b136c1d246ad3a67d47342430bcaf4ee17a6fc09c71a15b6b0578b37 16747266 libstdc++6-4.4-doc_4.4.4-9_all.deb
 bb250bc3367dac4d1b8af401da76758554e3ad2f98ebd4f5468912b28371ccbd 2298594 gcc-4.4-locales_4.4.4-9_all.deb
 3d19560dfec364da86a2af65e4715cf648cb74bd0f8f234ca4a648704f21ae8f 119024 gcc-4.4-base_4.4.4-9_amd64.deb
 e3b61f4a7e8dff9e8cc7a5558112210b67e44d610564723594ec07463d6e26dc 45036 libgcc1_4.4.4-9_amd64.deb
 749463fdb2839557659e8a55552b9ec20a7d5719ef47081eba0c036d7f3da5a7 83172 libgcc1-dbg_4.4.4-9_amd64.deb
 487d8c5ba52485a288382164680ae3d9d1b6e8d1103ab6241fda9d8a51d97ea1 55206 lib32gcc1_4.4.4-9_amd64.deb
 d82f33f02de15f040377042e0e6b35485ac4750cbed4b5d15c9062bdb0d7a098 78018 lib32gcc1-dbg_4.4.4-9_amd64.deb
 966cb5801c11bb74e418b63fe17180d004a2b24a25eecd68c95225c861645c26 25308 libgomp1_4.4.4-9_amd64.deb
 b1ae82a529aa1a88a0895c9a63ab647b45c19e72612181f78531e656188d520f 58876 libgomp1-dbg_4.4.4-9_amd64.deb
 2cda993b6326a53f3b7a289adef1824d6f532a9c4188f8a646156b11ada65c7e 24690 lib32gomp1_4.4.4-9_amd64.deb
 9eae182d783ac24d8799f6bcfa607bbbe643b51522d8b1a3ba133f355d85cd79 62362 lib32gomp1-dbg_4.4.4-9_amd64.deb
 fc434e3b73a7867528618eb06676059e904afedd8680deab24bfff6c168c389a 3870770 cpp-4.4_4.4.4-9_amd64.deb
 c96e69b68e03c3efdfd54ea0f3669fe1a614c9b3dc509e9c7406c9527e91b5ec 46952 protoize_4.4.4-9_amd64.deb
 7f060c0d5560205938b011eccf983971be7ba7f8a79e597c4565e7de902ff4cc 62266 fixincludes_4.4.4-9_amd64.deb
 c598e7d5dcbc593f169cc26a8f3db79a85754f367c68a39b8fe4dee35cdd0517 215524 libmudflap0-4.4-dev_4.4.4-9_amd64.deb
 5d513d2acd697955814ee4a8c1d71cb5a85f2d452ea3434a4cc6df6fa01d6eda 98130 libmudflap0_4.4.4-9_amd64.deb
 b29a1db8b8a74df97a961efb601cac867395fc8045d89e29aafd741be1c470e9 122480 libmudflap0-dbg_4.4.4-9_amd64.deb
 191258d7696d487c6874df5002d99a941f1bee254d3b0cbd21d4db4483044812 81936 lib32mudflap0_4.4.4-9_amd64.deb
 a5c647d18603304a66b9fc4bbebec1d7c62fe284900d9f192c6503d5d84544fb 120104 lib32mudflap0-dbg_4.4.4-9_amd64.deb
 86fd225852d4b4fa05e9794b29b3fd74c6d681c500587f1cb89a07293e95d66e 870 gobjc++-4.4-multilib_4.4.4-9_amd64.deb
 b8ba5a4ce129fba7a4453ef7ceb2e0050cd4260ef88967227b840d804a704a46 4148878 gobjc++-4.4_4.4.4-9_amd64.deb
 395626addb07abe0e00e47a4f9c049b2e3d2739462484ac8257638c17839243e 167708 gobjc-4.4-multilib_4.4.4-9_amd64.deb
 d992d9634000cff98495267b390ccbb31435d3baf2020f2244261668ab24dffd 4027420 gobjc-4.4_4.4.4-9_amd64.deb
 b84478cb824990806c5fa717c37756b824b80b9e24e403d4566f25425bf67ac0 160616 libobjc2_4.4.4-9_amd64.deb
 f540771cd09c9ce9f5eb9562e06649079272a2644084e0012748742d8d42f29f 278746 libobjc2-dbg_4.4.4-9_amd64.deb
 0c595012e8daa268dfbb334d9d9b0e52bf376097e9590f738c6c117bcb58e1c9 154908 lib32objc2_4.4.4-9_amd64.deb
 6da886a7e9702f7db2269609fa30f4ed6245f726a12ec06635432849fa1b8a3f 265344 lib32objc2-dbg_4.4.4-9_amd64.deb
 1fce4edba779ad22d5d5cc040b65282dbc8432e56cc613969aa02431e3cf6122 1009586 g++-4.4-multilib_4.4.4-9_amd64.deb
 8529485793aa4b85227c23cfc571394f4e9e53e3fb0416b79e30c59c0eb6798f 5499136 g++-4.4_4.4.4-9_amd64.deb
 63588691e4264291350a071520df80958a9b851863567f277723e0e293257d53 341212 libstdc++6_4.4.4-9_amd64.deb
 9741222e951607afa9821ec0da6f08b50197e415ac693d0e6795a0bc2ddabbef 347406 lib32stdc++6_4.4.4-9_amd64.deb
 c4bba52c26e66428abf6d3b5be1633e1bd141e86da99f2bf380faf717091759f 6308430 lib32stdc++6-4.4-dbg_4.4.4-9_amd64.deb
 0ce4cbcc05869f12d1d24f786ff63cb3e57d5733785a7d5e36104e727f3ff58d 1560312 libstdc++6-4.4-dev_4.4.4-9_amd64.deb
 1abd306f1e239237b8e504f20d29d56e518a7e2ca3a42fe91efe092d20e2da8f 513446 libstdc++6-4.4-pic_4.4.4-9_amd64.deb
 fb89af6bdde81c4858dc6a25f3327e9f09a1952c66d73aef284bcfb78d95ec4a 3964166 libstdc++6-4.4-dbg_4.4.4-9_amd64.deb
 031203f771bcaff72d3d0d6c3fdb5b561244d8dac1fed8addab102c21b10101d 291330 libgfortran3_4.4.4-9_amd64.deb
 deeec9189f2e66e3c25bcf5c4a962b961418b15458a32fb69ca88078bd5fc543 501724 libgfortran3-dbg_4.4.4-9_amd64.deb
 bebab407ace45343a3003de07274b6fdec5e0ec9a90a2fa16f3bb8b30d9de8b9 238772 lib32gfortran3_4.4.4-9_amd64.deb
 f95182585cebf201e21cec78abb1615c04be82c62f4dfc15bb19e32ba67a3444 388264 lib32gfortran3-dbg_4.4.4-9_amd64.deb
 658cd8407a1d803f07689e2cbdf496d35b855b2ec6a67a006d26d36856e29a14 268270 gfortran-4.4-multilib_4.4.4-9_amd64.deb
 aac21579a015624c26e1c9005b4fdbf43a7bee330913e1e19ca0e509e5d23528 4438852 gfortran-4.4_4.4.4-9_amd64.deb
 665d13b4ccb5068d8c1877d5d98d74b823a0b3467851d4ab3576af80c7e0daad 2332726 gcc-4.4-multilib_4.4.4-9_amd64.deb
 1367568945750ccc009fd3fcb7b2c8b0c3fc3c112d9c5bc9c7866a1357243292 2686506 gcc-4.4_4.4.4-9_amd64.deb
Files: 
 92df351bb72b8fea7924bde0908e9a71 3702 devel optional gcc-4.4_4.4.4-9.dsc
 48d0a307170cd8db357bee3dd9304fc7 752308 devel optional gcc-4.4_4.4.4-9.diff.gz
 b0934b07cf16d13d0f7dee0e75d260f8 55079574 devel optional gcc-4.4-source_4.4.4-9_all.deb
 2861b15c0e637549da1f41c24f64f254 16747266 doc optional libstdc++6-4.4-doc_4.4.4-9_all.deb
 7c4281c058956583df15ce18683ca0fd 2298594 devel optional gcc-4.4-locales_4.4.4-9_all.deb
 737dca1b5625b65853fe6ee7d99f8f2d 119024 libs required gcc-4.4-base_4.4.4-9_amd64.deb
 64b1438788f6e8c06790e87d8bca3d25 45036 libs required libgcc1_4.4.4-9_amd64.deb
 fc99ce26c492a3fa2319e815f7646d8e 83172 debug extra libgcc1-dbg_4.4.4-9_amd64.deb
 d5ccf454c5bf8b05b22bf6acae85dbac 55206 libs optional lib32gcc1_4.4.4-9_amd64.deb
 001ea256d011681256aa1a7b20869474 78018 debug extra lib32gcc1-dbg_4.4.4-9_amd64.deb
 ef082244a687cd436bdcea01839b2e51 25308 libs optional libgomp1_4.4.4-9_amd64.deb
 c1b50a606d0a58a6e45822f88aef1824 58876 debug extra libgomp1-dbg_4.4.4-9_amd64.deb
 1754efc959592d3496b2668fcbdb8806 24690 libs optional lib32gomp1_4.4.4-9_amd64.deb
 f84ec29bb50008ab70ede370429c420f 62362 debug extra lib32gomp1-dbg_4.4.4-9_amd64.deb
 52af6eb2401baa09a33a33ae9d7db7c3 3870770 interpreters optional cpp-4.4_4.4.4-9_amd64.deb
 f287375385c08efee0a4ed2530493f6c 46952 devel optional protoize_4.4.4-9_amd64.deb
 45ec966699355ccd679744a131ac6d76 62266 devel optional fixincludes_4.4.4-9_amd64.deb
 1a4009d6723671be1d34b3d972df9201 215524 libdevel optional libmudflap0-4.4-dev_4.4.4-9_amd64.deb
 d1b941633e245195d603d348bf91cd38 98130 libs optional libmudflap0_4.4.4-9_amd64.deb
 d7ab3462b4b25f531f0d5d1c9f0bb6c0 122480 debug extra libmudflap0-dbg_4.4.4-9_amd64.deb
 3ac12166b6e01898e27ba9b975cdf073 81936 libs optional lib32mudflap0_4.4.4-9_amd64.deb
 3128eb243eabfef0f88087611a74da4a 120104 debug extra lib32mudflap0-dbg_4.4.4-9_amd64.deb
 566ab92f8c69a6bee9ed3af724b795e7 870 devel optional gobjc++-4.4-multilib_4.4.4-9_amd64.deb
 3f3dd26ef4c37d42abccde2ac53da604 4148878 devel optional gobjc++-4.4_4.4.4-9_amd64.deb
 bfbccf908a34e11f8ab2c5b15bdf5d9a 167708 devel optional gobjc-4.4-multilib_4.4.4-9_amd64.deb
 a9ba3112780471c994a237dba4321835 4027420 devel optional gobjc-4.4_4.4.4-9_amd64.deb
 a29b2f06ed175843f14ce0a07e15e119 160616 libs optional libobjc2_4.4.4-9_amd64.deb
 577ebdbcdc14928dad04ab1d70e92fcd 278746 debug extra libobjc2-dbg_4.4.4-9_amd64.deb
 6712b5165585819b8c3a093e1fd93a95 154908 libs optional lib32objc2_4.4.4-9_amd64.deb
 5a2517e16e2d4dbf419c4f8bdb2d2efc 265344 debug extra lib32objc2-dbg_4.4.4-9_amd64.deb
 4365623472abd9e688316f9681876ca1 1009586 devel optional g++-4.4-multilib_4.4.4-9_amd64.deb
 34384110805309e5db57b7d5b75cece2 5499136 devel optional g++-4.4_4.4.4-9_amd64.deb
 4decde841d957cc04c4d5f1ef1422ad9 341212 libs required libstdc++6_4.4.4-9_amd64.deb
 e0389d43ae039619fa87577e90ef46e3 347406 libs optional lib32stdc++6_4.4.4-9_amd64.deb
 e26c831560010f99cf24dd6c968b4608 6308430 debug extra lib32stdc++6-4.4-dbg_4.4.4-9_amd64.deb
 f3168265c7ce76faa726f3105bf957bb 1560312 libdevel optional libstdc++6-4.4-dev_4.4.4-9_amd64.deb
 504e03d824d064e07c12535cdc4f50e0 513446 libdevel extra libstdc++6-4.4-pic_4.4.4-9_amd64.deb
 810b13129f5c4ce119d522340cfc619e 3964166 debug extra libstdc++6-4.4-dbg_4.4.4-9_amd64.deb
 1b1ae0c38406c8d7650e2c6061f85224 291330 libs optional libgfortran3_4.4.4-9_amd64.deb
 ff9e3a3fa118f272c237371df913c305 501724 debug extra libgfortran3-dbg_4.4.4-9_amd64.deb
 68a7093a15aeeb68e1865b098fe4db6e 238772 libs optional lib32gfortran3_4.4.4-9_amd64.deb
 1b12173f861a5fae4bc775d4b19100bf 388264 debug extra lib32gfortran3-dbg_4.4.4-9_amd64.deb
 9384dfe9140b08738343188a19098cff 268270 devel optional gfortran-4.4-multilib_4.4.4-9_amd64.deb
 4447fe09c4f67b172278a7deb9511029 4438852 devel optional gfortran-4.4_4.4.4-9_amd64.deb
 beeecd848005ec2a04ecebe8af42b4dc 2332726 devel optional gcc-4.4-multilib_4.4.4-9_amd64.deb
 e10ff0b62b5d5c721f9411e23283f1b0 2686506 devel optional gcc-4.4_4.4.4-9_amd64.deb

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

iEYEARECAAYFAkxqPagACgkQStlRaw+TLJwxBACcDpJ+h8OTGJUT9OzzQyZZNU+b
zvIAn1Z7IFpV61r+jq3BQIOh4dwtBg2n
=rIbu
-----END PGP SIGNATURE-----



--- End Message ---

Reply to: