Bug#540640: marked as done (libstdc++6-4.3-dbg is not useful)

2009-09-19 Thread Debian Bug Tracking System
Your message dated Sat, 19 Sep 2009 11:51:53 +0200
with message-id <4ab4a9b9.4030...@debian.org>
and subject line Re: Bug#540640: libstdc++6-4.3-dbg is not useful
has caused the Debian Bug report #540640,
regarding libstdc++6-4.3-dbg is not useful
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.)


-- 
540640: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=540640
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libstdc++6-4.3-dbg
Version: 4.3.2-1.1
Severity: important

I'm writing classes that derive from istream and streambuf so I need to see how 
they're called.
To do this I installed libstdc++6-4.3-dbg and fired up kdbg.
libstdc++6-4.3-dbg seems to make no difference - I still can't step into the 
libstdc++6-4.3
sources/headers, in fact the kdbg stack trace doesn't even mention line numbers.

-- System Information:
Debian Release: 5.0.2
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-2-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages libstdc++6-4.3-dbg depends on:
ii  gcc-4.3-base 4.3.2-1.1   The GNU Compiler Collection (base 
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgcc1-dbg  1:4.3.2-1.1 GCC support library (debug symbols
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3

Versions of packages libstdc++6-4.3-dbg recommends:
ii  libstdc++6-4.3-dev4.3.2-1.1  The GNU Standard C++ Library v3 (d

libstdc++6-4.3-dbg suggests no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---

On 09.08.2009 12:49, Philip Ashmore wrote:

Package: libstdc++6-4.3-dbg
Version: 4.3.2-1.1
Severity: important

I'm writing classes that derive from istream and streambuf so I need to see how 
they're called.
To do this I installed libstdc++6-4.3-dbg and fired up kdbg.
libstdc++6-4.3-dbg seems to make no difference - I still can't step into the 
libstdc++6-4.3
sources/headers, in fact the kdbg stack trace doesn't even mention line numbers.


you have to look at the version of libstdc++6. if it's built from gcc-4.3, then 
you'll find the debug symbols in libstdc++6-4.3-dbg, if it's built from gcc-4.4 
(as in current testing/unstable), you'll find the debug symbols in 
libstdc++6-4.4-dbg.  In addition both packages do contain builds enabled via 
--enable-libstdcxx-debug. See the docs how to use these builds.


--- End Message ---


Bug#539470: marked as done (Warning: Immediates 21 and 32 will give undefined behavior.)

2009-09-19 Thread Debian Bug Tracking System
Your message dated Sat, 19 Sep 2009 11:54:49 +0200
with message-id <4ab4aa69.5060...@debian.org>
and subject line Re: Bug#539470: Warning: Immediates 21 and 32 will give 
undefined behavior.
has caused the Debian Bug report #539470,
regarding Warning: Immediates 21 and 32 will give undefined behavior.
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.)


-- 
539470: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=539470
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: gcc-4.3
Tags: upstream, patch

I'm filing this BR against gcc-4.3, but according to upstream it affects
*all* versions of gcc, and in all Debian releases!

During compilations using gcc-4.3 of the upstream 2.6.31-rc4 kernel, I
twice noticed the following warning:
{standard input}: Assembler messages:
{standard input}:1345: Warning: Immediates 21 and 32 will give undefined 
behavior.

John David Anglin responded:
   GCC loads various constants with depwi and depdi. The deposit length was
   wrong. Helge found that a 715 failed to boot because some hand written
   assembler code had an incorrect deposit length. Thus, he believes that
   it is an issue to worry about on old machines.
   It is not a new issue. The responsible GCC code had not changed since
   1997. So, maybe it is not a problem on most PA machines.

A patch has been committed to upstream GCC trunk, 4.3 and 4.4 branches, but
not yet released:
2009-07-20  John David Anglin  
* pa.c (compute_zdepwi_operands): Limit deposit length to 32 - lsb.
Cast "1" to unsigned HOST_WIDE_INT.
(compute_zdepdi_operands): Limit maximum length to 64 bits.  Limit
deposit length to the maximum length - lsb.  Extend length if
HOST_BITS_PER_WIDE_INT is 32.

For details, see the following thread on the d-hppa list:
http://lists.debian.org/debian-hppa/2009/07/msg00093.html

For questions I suggest you contact John David Anglin or Carlos O'Donell.

Cheers,
FJP


--- End Message ---
--- Begin Message ---

fixed in testing/unstable. I don't plan to update gcc-4.3 in stable.

On 01.08.2009 09:55, Frans Pop wrote:

Package: gcc-4.3
Tags: upstream, patch

I'm filing this BR against gcc-4.3, but according to upstream it affects
*all* versions of gcc, and in all Debian releases!

During compilations using gcc-4.3 of the upstream 2.6.31-rc4 kernel, I
twice noticed the following warning:
{standard input}: Assembler messages:
{standard input}:1345: Warning: Immediates 21 and 32 will give undefined 
behavior.

John David Anglin responded:
GCC loads various constants with depwi and depdi. The deposit length was
wrong. Helge found that a 715 failed to boot because some hand written
assembler code had an incorrect deposit length. Thus, he believes that
it is an issue to worry about on old machines.
It is not a new issue. The responsible GCC code had not changed since
1997. So, maybe it is not a problem on most PA machines.

A patch has been committed to upstream GCC trunk, 4.3 and 4.4 branches, but
not yet released:
2009-07-20  John David Anglin
 * pa.c (compute_zdepwi_operands): Limit deposit length to 32 - lsb.
 Cast "1" to unsigned HOST_WIDE_INT.
 (compute_zdepdi_operands): Limit maximum length to 64 bits.  Limit
 deposit length to the maximum length - lsb.  Extend length if
 HOST_BITS_PER_WIDE_INT is 32.

For details, see the following thread on the d-hppa list:
http://lists.debian.org/debian-hppa/2009/07/msg00093.html

For questions I suggest you contact John David Anglin or Carlos O'Donell.

Cheers,
FJP






--- End Message ---


Processed: raise severity of bug reports for packages build-depending on gcc-4.2 (panned for removal)

2009-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 533782 serious
Bug #533782 [hurd] hurd: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533783 serious
Bug #533783 [libcomplearn] libcomplearn: non-standard gcc/g++ used for build 
(gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533784 serious
Bug #533784 [libqsearch] libqsearch: non-standard gcc/g++ used for build 
(gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533785 serious
Bug #533785 [gdc-4.2] gdc-4.2: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533788 serious
Bug #533788 [squashfs] squashfs: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533789 serious
Bug #533789 [llvm-gcc-4.2] llvm-gcc-4.2: non-standard gcc/g++ used for build 
(gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533790 serious
Bug #533790 [kaffe] kaffe: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533791 serious
Bug #533791 [ccmalloc] ccmalloc: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533793 serious
Bug #533793 [libept] libept: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533794 serious
Bug #533794 [pymol] pymol: non-standard gcc/g++ used for build (gcc-4.2)
Severity set to 'serious' from 'important'

> severity 533796 serious
Bug #533796 [texlive-bin] texlive-bin: non-standard gcc/g++ used for build 
(gcc-4.2)
Severity set to 'serious' from 'important'

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processing of gcc-4.3_4.3.4-3_i386.changes

2009-09-19 Thread Archive Administrator
gcc-4.3_4.3.4-3_i386.changes uploaded successfully to localhost
along with the files:
  gcc-4.3_4.3.4-3.dsc
  gcc-4.3_4.3.4-3.diff.gz
  gcc-4.3-source_4.3.4-3_all.deb
  libstdc++6-4.3-doc_4.3.4-3_all.deb
  gcc-4.3-locales_4.3.4-3_all.deb
  gcc-4.3-base_4.3.4-3_i386.deb
  cpp-4.3_4.3.4-3_i386.deb
  libmudflap0-4.3-dev_4.3.4-3_i386.deb
  gobjc++-4.3-multilib_4.3.4-3_i386.deb
  gobjc++-4.3_4.3.4-3_i386.deb
  gobjc-4.3-multilib_4.3.4-3_i386.deb
  gobjc-4.3_4.3.4-3_i386.deb
  g++-4.3-multilib_4.3.4-3_i386.deb
  g++-4.3_4.3.4-3_i386.deb
  lib64stdc++6-4.3-dbg_4.3.4-3_i386.deb
  libstdc++6-4.3-dev_4.3.4-3_i386.deb
  libstdc++6-4.3-pic_4.3.4-3_i386.deb
  libstdc++6-4.3-dbg_4.3.4-3_i386.deb
  gfortran-4.3-multilib_4.3.4-3_i386.deb
  gfortran-4.3_4.3.4-3_i386.deb
  gcc-4.3-multilib_4.3.4-3_i386.deb
  gcc-4.3_4.3.4-3_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#533785: gdc-4.2: non-standard gcc/g++ used for build (gcc-4.2)

2009-09-19 Thread Matthias Klose
The default gdc still points to 4.1, gdc-4.2 never was part of a stable release, 
so it shouldn't hurt to remove it from unstable.




--
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#540640: libstdc++6-4.3-dbg is not useful

2009-09-19 Thread Philip Ashmore

I wrote a bash script to reproduce this bug - please find it attached.

I snipped the i_chunk_stream classes from my SourceForge project 
http://sourceforge.net/projects/v3c.


For some reason gdb insists on a final  from the keyboard before 
it quits even though it's run

from a script.

To get around this and to compare your output to mine, run the script as

   ./dbgtest.sh  dbgtest-cmp.txt

Here's my output from this test.
You will see source file and line numbers from dbgtest.cpp in the stack 
trace but not from the standard library.


### Listing installed packages matching libstdc++6*
ii libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii libstdc++6-4.3-dbg 4.3.2-1.1 The GNU Standard C++ Library v3 (debugging f
ii libstdc++6-4.3-dev 4.3.2-1.1 The GNU Standard C++ Library v3 (development
ii libstdc++6-4.3-doc 4.3.2-1.1 The GNU Standard C++ Library v3 (documentati

### Writing dbgtest.cpp

### Compiling/linking dbgtest.cpp with debugging information

### Listing libraries dbgtest links with.
   linux-vdso.so.1 =>  (0x7fff63bff000)
   libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x7f115b501000)
   libm.so.6 => /lib/libm.so.6 (0x7f115b27e000)
   libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x7f115b067000)
   libc.so.6 => /lib/libc.so.6 (0x7f115ad14000)
   /lib64/ld-linux-x86-64.so.2 (0x7f115b80d000)

### Running dbgtest with gdb - press  to finish...
~"GNU gdb 6.8-debian\n"
~"Copyright (C) 2008 Free Software Foundation, Inc.\n"
~"License GPLv3+: GNU GPL version 3 or later 
\n"

~"This is free software: you are free to change and redistribute it.\n"
~"There is NO WARRANTY, to the extent permitted by law.  Type \"show 
copying\"\n"

~"and \"show warranty\" for details.\n"
~"This GDB was configured as \"x86_64-linux-gnu\"...\n"
(gdb)
&"break i_chunk_streambuf::underflow()\n"
~"Breakpoint 1 at 0x401b82: file dbgtest.cpp, line 23.\n"
^done
(gdb)
&"run\n"
~"Starting program: /v3c/dev/bugs/Debian/dbgtest \n"
~"\n"
~"Breakpoint 1, i_chunk_streambuf::underflow (this=0x7fff8dfba270) at 
dbgtest.cpp:23\n"

~"23\t\t\tcout << \"underflow() called.\" << endl;\n"
^done
(gdb)
&"bt\n"
~"#0  i_chunk_streambuf::underflow (this=0x7fff8dfba270) at 
dbgtest.cpp:23\n"
~"#1  0x7f6185b1f02c in std::num_getstd::istreambuf_iterator > 
>::_M_extract_int () from /usr/lib/libstdc++.so.6\n"
~"#2  0x7f6185b1f270 in std::num_getstd::istreambuf_iterator > >::do_get () 
from /usr/lib/libstdc++.so.6\n"
~"#3  0x7f6185b0ded1 in std::istream::_M_extract () from 
/usr/lib/libstdc++.so.6\n"
~"#4  0x7f6185b0dfae in std::istream::operator>> () from 
/usr/lib/libstdc++.so.6\n"

~"#5  0x004018e9 in test2 () at dbgtest.cpp:64\n"
~"#6  0x00401a57 in main (argc=1, argv=0x7fff8dfba4e8) at 
dbgtest.cpp:82\n"

^done
(gdb)
&"c\n"
~"Continuing.\n"
underflow() called.
Success!
~"\n"
~"Program exited normally.\n"
^done
(gdb)
^exit
### Done.



dbgtest.sh
Description: Bourne shell script


gcc-4.3_4.3.4-3_i386.changes ACCEPTED

2009-09-19 Thread Archive Administrator

Accepted:
cpp-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/cpp-4.3_4.3.4-3_i386.deb
g++-4.3-multilib_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/g++-4.3-multilib_4.3.4-3_i386.deb
g++-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/g++-4.3_4.3.4-3_i386.deb
gcc-4.3-base_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gcc-4.3-base_4.3.4-3_i386.deb
gcc-4.3-locales_4.3.4-3_all.deb
  to pool/main/g/gcc-4.3/gcc-4.3-locales_4.3.4-3_all.deb
gcc-4.3-multilib_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gcc-4.3-multilib_4.3.4-3_i386.deb
gcc-4.3-source_4.3.4-3_all.deb
  to pool/main/g/gcc-4.3/gcc-4.3-source_4.3.4-3_all.deb
gcc-4.3_4.3.4-3.diff.gz
  to pool/main/g/gcc-4.3/gcc-4.3_4.3.4-3.diff.gz
gcc-4.3_4.3.4-3.dsc
  to pool/main/g/gcc-4.3/gcc-4.3_4.3.4-3.dsc
gcc-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gcc-4.3_4.3.4-3_i386.deb
gfortran-4.3-multilib_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gfortran-4.3-multilib_4.3.4-3_i386.deb
gfortran-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gfortran-4.3_4.3.4-3_i386.deb
gobjc++-4.3-multilib_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gobjc++-4.3-multilib_4.3.4-3_i386.deb
gobjc++-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gobjc++-4.3_4.3.4-3_i386.deb
gobjc-4.3-multilib_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gobjc-4.3-multilib_4.3.4-3_i386.deb
gobjc-4.3_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/gobjc-4.3_4.3.4-3_i386.deb
lib64stdc++6-4.3-dbg_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/lib64stdc++6-4.3-dbg_4.3.4-3_i386.deb
libmudflap0-4.3-dev_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/libmudflap0-4.3-dev_4.3.4-3_i386.deb
libstdc++6-4.3-dbg_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/libstdc++6-4.3-dbg_4.3.4-3_i386.deb
libstdc++6-4.3-dev_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/libstdc++6-4.3-dev_4.3.4-3_i386.deb
libstdc++6-4.3-doc_4.3.4-3_all.deb
  to pool/main/g/gcc-4.3/libstdc++6-4.3-doc_4.3.4-3_all.deb
libstdc++6-4.3-pic_4.3.4-3_i386.deb
  to pool/main/g/gcc-4.3/libstdc++6-4.3-pic_4.3.4-3_i386.deb


Override entries for your package:
cpp-4.3_4.3.4-3_i386.deb - optional interpreters
g++-4.3-multilib_4.3.4-3_i386.deb - optional devel
g++-4.3_4.3.4-3_i386.deb - optional devel
gcc-4.3-base_4.3.4-3_i386.deb - required libs
gcc-4.3-locales_4.3.4-3_all.deb - optional devel
gcc-4.3-multilib_4.3.4-3_i386.deb - optional devel
gcc-4.3-source_4.3.4-3_all.deb - optional devel
gcc-4.3_4.3.4-3.dsc - source devel
gcc-4.3_4.3.4-3_i386.deb - optional devel
gfortran-4.3-multilib_4.3.4-3_i386.deb - optional devel
gfortran-4.3_4.3.4-3_i386.deb - optional devel
gobjc++-4.3-multilib_4.3.4-3_i386.deb - optional devel
gobjc++-4.3_4.3.4-3_i386.deb - optional devel
gobjc-4.3-multilib_4.3.4-3_i386.deb - optional devel
gobjc-4.3_4.3.4-3_i386.deb - optional devel
lib64stdc++6-4.3-dbg_4.3.4-3_i386.deb - extra debug
libmudflap0-4.3-dev_4.3.4-3_i386.deb - optional libdevel
libstdc++6-4.3-dbg_4.3.4-3_i386.deb - extra debug
libstdc++6-4.3-dev_4.3.4-3_i386.deb - optional libdevel
libstdc++6-4.3-doc_4.3.4-3_all.deb - optional doc
libstdc++6-4.3-pic_4.3.4-3_i386.deb - extra libdevel

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#547429: gcc: incorrect code with optimisation

2009-09-19 Thread Jörgen Tegnér
Package: gcc
Version: 4:4.3.3-9
Severity: normal


The code below gives incorrect result for the subtraction when optimisation is 
used.

Without optimisation, the difference is 2.
With optimisation, the difference is 0.


#include 
#include 

int main(void)
{
  int ii;
  float ftest;

  ii=INT_MAX-1;
  ftest=(float)ii;
  printf("%d %.11g %.11g\n",ii,ftest,ftest-ii);

  return 0;
}

Tested on both gcc 4.3 and 4.4, same error.



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

Kernel: Linux 2.6.24
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcc depends on:
ii  cpp   4:4.3.3-9  The GNU C preprocessor (cpp)
ii  gcc-4.3   4.3.4-2The GNU C compiler

Versions of packages gcc recommends:
ii  libc6-dev [libc-dev]  2.9-26 GNU C Library: Development Librari

Versions of packages gcc suggests:
ii  autoconf   2.64-2automatic configure script builder
pn  automake1.9(no description available)
ii  bison  1:2.4.1.dfsg-3A parser generator that is compati
ii  flex   2.5.35-8  A fast lexical analyzer generator.
ii  gcc-doc5:2   documentation for the GNU compiler
pn  gcc-multilib   (no description available)
ii  gdb6.8.50.20090628-4 The GNU Debugger
ii  libtool2.2.6a-4  Generic library support script
ii  make   3.81-6An utility for Directing compilati
ii  manpages-dev   3.22-1Manual pages about using GNU/Linux

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#547165: gcj-jre contains nothing (contrary to its description)

2009-09-19 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reopen 547165
Bug #547165 {Done: Matthias Klose } [gcj-jre] gcj-jre contains 
nothing (contrary to its description)
> severity 547165 normal
Bug #547165 [gcj-jre] gcj-jre contains nothing (contrary to its description)
Severity set to 'normal' from 'grave'

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#547165: gcj-jre contains nothing (contrary to its description)

2009-09-19 Thread Vincent Lefevre
reopen 547165
severity 547165 normal
thanks

On 2009-09-17 15:02:55 +0200, Matthias Klose wrote:
> closing, wrong. see the hppa packages.

This answer is buggy: the hppa package also contains nothing:
http://packages.debian.org/sid/hppa/gcj-jre/filelist lists:

/usr/share/doc/gcj-jre

(which is just the symbolic link). According to the answer I got on
the debian-user list, this is the description that is incorrect. It
should be updated to say that this package is a dependency package.

-- 
Vincent Lefèvre  - Web: 
100% accessible validated (X)HTML - Blog: 
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



--
To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org