www.selfbanking.com.ar

2008-01-02 Thread Pls check this new site
Please see this site in Subject



www.banking-financial.com

2008-01-02 Thread Pls check this new site
Please see this site in Subject



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Camm Maguire
Package: gcc-4.2
Version: 4.2.2-4
Severity: important

/tmp/foo.c:
=
#include stdio.h
#include alloca.h
#include stdarg.h
#define object void *

int VFUN_NARGS;
void *alloca_val;
struct cons {
  object c_cdr;
  object c_car;
};

#define Cnil 0

static void
foo(object first,...) {
  va_list ap;
  int narg = VFUN_NARGS;
  struct cons *V1128;
  object V1129;

  va_start(ap,first);
  V1129 = 
!narg? Cnil : (alloca_val=alloca((narg)*sizeof(struct cons)+sizeof(object)),
   ({object _b=(void *)alloca_val;if (((unsigned 
long)_b)sizeof(_b)) _b++;
   {register struct cons *_p=(void *)_b;
   {struct cons *_e=_p+(narg-1);
   for (;_p_e;_p++) {_p-c_car=({object 
_t=first;first=va_arg(ap,object);_t;});_p-c_cdr=(object)(_p+1);}}
   _p-c_car=first;_p-c_cdr=Cnil;}_b;}));
  va_end(ap);
  V1128= V1129;
  for (;V1128!=Cnil;V1128=V1128-c_cdr)
printf(%p\n,V1128-c_car);

}

int
main(int argc,char * argv[]) {

  VFUN_NARGS=4;
  foo(argc,1,2,3);
  return 0;

}
=
i386 sid:
=
cc -g /tmp/foo.c -o /tmp/foo
/tmp/foo
0xbf867bd0
0x1
0x2
0x3
=
leisner dchroot sid:
=
cc -g foo.c -o foo
./foo
0x18beed5d
Segmentation fault
=

Take care,

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

Kernel: Linux 2.6.20-gen
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcc-4.2 depends on:
ii  binutils2.18.1~cvs20071027-1 The GNU assembler, linker and bina
ii  cpp-4.2 4.2.2-4  The GNU C preprocessor
ii  gcc-4.2-base4.2.2-4  The GNU Compiler Collection (base 
ii  libc6   2.7-2GNU C Library: Shared libraries
ii  libgcc1 1:4.2.2-4GCC support library
ii  libgomp14.2.2-4  GCC OpenMP (GOMP) support library

Versions of packages gcc-4.2 recommends:
ii  libc6-dev 2.7-2  GNU C Library: Development Librari

-- no debconf information



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#85535: completely incapable of pleasing a woman?

2008-01-02 Thread bryn leander
regards 
Nothing c'n B better than our pharmas!
http://dobongworld.com
Though the sky be dark, and the voyage be long,





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Martin Guy
I just tried foo.c on up-to-date arm-sid and armel-sid systems, both
under qemu and on real hardware and I cannot reproduce the problem;
all succeed the same way, for example:

[EMAIL PROTECTED]:~$ /usr/bin/gcc-4.2 foo.c
[EMAIL PROTECTED]:~$ ./a.out
0xbe92ec84
0x1
0x2
0x3
[EMAIL PROTECTED]:~$ gcc --version
gcc (GCC) 4.2.3 20071123 (prerelease) (Debian 4.2.2-4)

So I can only suspect a leisner problem of some kind.

If you would like to try reproducing the problem here, please get in
touch and I'll arrange access.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Martin Michlmayr
Herbert, do you think you could take a quick long at this bug report
before I forward it upstream to the GCC folks?


* Camm Maguire [EMAIL PROTECTED] [2008-01-02 10:09]:
 Package: gcc-4.2
 Version: 4.2.2-4
 Severity: important
 
 /tmp/foo.c:
 =
 #include stdio.h
 #include alloca.h
 #include stdarg.h
 #define object void *
 
 int VFUN_NARGS;
 void *alloca_val;
 struct cons {
   object c_cdr;
   object c_car;
 };
 
 #define Cnil 0
 
 static void
 foo(object first,...) {
   va_list ap;
   int narg = VFUN_NARGS;
   struct cons *V1128;
   object V1129;
 
   va_start(ap,first);
   V1129 = 
 !narg? Cnil : (alloca_val=alloca((narg)*sizeof(struct 
 cons)+sizeof(object)),
  ({object _b=(void *)alloca_val;if (((unsigned 
 long)_b)sizeof(_b)) _b++;
  {register struct cons *_p=(void *)_b;
  {struct cons *_e=_p+(narg-1);
  for (;_p_e;_p++) {_p-c_car=({object 
 _t=first;first=va_arg(ap,object);_t;});_p-c_cdr=(object)(_p+1);}}
  _p-c_car=first;_p-c_cdr=Cnil;}_b;}));
   va_end(ap);
   V1128= V1129;
   for (;V1128!=Cnil;V1128=V1128-c_cdr)
 printf(%p\n,V1128-c_car);
 
 }
 
 int
 main(int argc,char * argv[]) {
 
   VFUN_NARGS=4;
   foo(argc,1,2,3);
   return 0;
 
 }
 =
 i386 sid:
 =
 cc -g /tmp/foo.c -o /tmp/foo
 /tmp/foo
 0xbf867bd0
 0x1
 0x2
 0x3
 =
 leisner dchroot sid:
 =
 cc -g foo.c -o foo
 ./foo
 0x18beed5d
 Segmentation fault
 =
 
 Take care,
 
 -- System Information:
 Debian Release: lenny/sid
   APT prefers unstable
   APT policy: (500, 'unstable')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.20-gen
 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages gcc-4.2 depends on:
 ii  binutils2.18.1~cvs20071027-1 The GNU assembler, linker and 
 bina
 ii  cpp-4.2 4.2.2-4  The GNU C preprocessor
 ii  gcc-4.2-base4.2.2-4  The GNU Compiler Collection 
 (base 
 ii  libc6   2.7-2GNU C Library: Shared libraries
 ii  libgcc1 1:4.2.2-4GCC support library
 ii  libgomp14.2.2-4  GCC OpenMP (GOMP) support library
 
 Versions of packages gcc-4.2 recommends:
 ii  libc6-dev 2.7-2  GNU C Library: Development 
 Librari
 
 -- no debconf information
 

-- 
Martin Michlmayr
http://www.cyrius.com/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#123468: sorry portage

2008-01-02 Thread Tyree Starkkjt
Hello,
would you like gigantic member
http://www.saltutieod.com

Leanne




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



www.selfbanking.com.ar

2008-01-02 Thread Pls check this new site
Please see this site in Subject



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Herbert Valerio Riedel

On Wed, 2008-01-02 at 20:02 +0100, Martin Michlmayr wrote:
 Herbert, do you think you could take a quick long at this bug report
 before I forward it upstream to the GCC folks?

well, I couldn't reproduce that on a Debian EABI system with

ii  gcc 4:4.2.2-1   The GNU C compiler
ii  libc6   2.7-5   GNU C Library: 
Shared libraries

no segfaults here... :-/





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#123468: companies outstretched

2008-01-02 Thread GErnestine Karyn
wouldn't you wont large slong
http://www.Foredroons.com

Willis




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Camm Maguire
Greetings!

May I add that eliminating this code resolved the issue present in

http://buildd.debian.org/fetch.cgi?pkg=gclcvsver=2.7.0-82arch=armstamp=1198067608file=log

as shown in

http://buildd.debian.org/fetch.cgi?pkg=gclcvsver=2.7.0-83arch=armstamp=1199286999file=log

Is EABI the old arm, or the new?  Couldn't this make a difference?

Take care,


Herbert Valerio Riedel [EMAIL PROTECTED] writes:

 On Wed, 2008-01-02 at 20:02 +0100, Martin Michlmayr wrote:
  Herbert, do you think you could take a quick long at this bug report
  before I forward it upstream to the GCC folks?
 
 well, I couldn't reproduce that on a Debian EABI system with
 
 ii  gcc 4:4.2.2-1   The GNU C compiler
 ii  libc6   2.7-5   GNU C Library: 
 Shared libraries
 
 no segfaults here... :-/
 
 
 
 
 

-- 
Camm Maguire[EMAIL PROTECTED]
==
The earth is but one country, and mankind its citizens.  --  Baha'u'llah



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Camm Maguire
Greetings!

Martin Guy [EMAIL PROTECTED] writes:

 I just tried foo.c on up-to-date arm-sid and armel-sid systems, both
 under qemu and on real hardware and I cannot reproduce the problem;
 all succeed the same way, for example:
 
 [EMAIL PROTECTED]:~$ /usr/bin/gcc-4.2 foo.c
 [EMAIL PROTECTED]:~$ ./a.out
 0xbe92ec84
 0x1
 0x2
 0x3
 [EMAIL PROTECTED]:~$ gcc --version
 gcc (GCC) 4.2.3 20071123 (prerelease) (Debian 4.2.2-4)
 
 So I can only suspect a leisner problem of some kind.
 
 If you would like to try reproducing the problem here, please get in
 touch and I'll arrange access.
 

This would be very helpful, if convenient for you.  I'm confused about
the different versions of arm and Debian.

Take care,

 
 

-- 
Camm Maguire[EMAIL PROTECTED]
==
The earth is but one country, and mankind its citizens.  --  Baha'u'llah



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#458745: arm-only miscompilation of alloca code

2008-01-02 Thread Martin Michlmayr
* Herbert Valerio Riedel [EMAIL PROTECTED] [2008-01-02 22:13]:
 well, I couldn't reproduce that on a Debian EABI system with
 
 ii  gcc 4:4.2.2-1   The GNU C compiler
 ii  libc6   2.7-5   GNU C Library: 
 Shared libraries
 
 no segfaults here... :-/

I get

./t(sid)[EMAIL PROTECTED]:~$ ./t2
0x18be8ebb
(nil)

on a box with EABI kernel an old ABI chroot.  I see the segfault on
leisner (the box Camm probably used).
-- 
Martin Michlmayr
http://www.cyrius.com/



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



[Bug target/34628] [4.2/4.3 Regression] problems with inlining on ARM

2008-01-02 Thread mmitchel at gcc dot gnu dot org


--- Comment #3 from mmitchel at gcc dot gnu dot org  2008-01-02 23:14 
---
Put into WAITING state until the information requested in Comment #2 is
available.


-- 

mmitchel at gcc dot gnu dot org changed:

   What|Removed |Added

 Status|UNCONFIRMED |WAITING


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34628

--- You are receiving this mail because: ---
You are on the CC list for the bug, or are watching someone who is.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Processing of gcc-4.2_4.2.2-5_i386.changes

2008-01-02 Thread Archive Administrator
gcc-4.2_4.2.2-5_i386.changes uploaded successfully to localhost
along with the files:
  gcc-4.2_4.2.2-5.dsc
  gcc-4.2_4.2.2-5.diff.gz
  gcc-4.2-source_4.2.2-5_all.deb
  cpp-4.2-doc_4.2.2-5_all.deb
  libstdc++6-4.2-doc_4.2.2-5_all.deb
  gfortran-4.2-doc_4.2.2-5_all.deb
  gcc-4.2-doc_4.2.2-5_all.deb
  gcc-4.2-locales_4.2.2-5_all.deb
  gcc-4.2-base_4.2.2-5_i386.deb
  libgcc1_4.2.2-5_i386.deb
  libgcc1-dbg_4.2.2-5_i386.deb
  lib64gcc1_4.2.2-5_i386.deb
  lib64gcc1-dbg_4.2.2-5_i386.deb
  libgomp1_4.2.2-5_i386.deb
  libgomp1-dbg_4.2.2-5_i386.deb
  lib64gomp1_4.2.2-5_i386.deb
  lib64gomp1-dbg_4.2.2-5_i386.deb
  cpp-4.2_4.2.2-5_i386.deb
  protoize_4.2.2-5_i386.deb
  fixincludes_4.2.2-5_i386.deb
  libmudflap0-4.2-dev_4.2.2-5_i386.deb
  libmudflap0_4.2.2-5_i386.deb
  libmudflap0-dbg_4.2.2-5_i386.deb
  lib64mudflap0_4.2.2-5_i386.deb
  lib64mudflap0-dbg_4.2.2-5_i386.deb
  gobjc++-4.2-multilib_4.2.2-5_i386.deb
  gobjc++-4.2_4.2.2-5_i386.deb
  gobjc-4.2-multilib_4.2.2-5_i386.deb
  gobjc-4.2_4.2.2-5_i386.deb
  libobjc2_4.2.2-5_i386.deb
  libobjc2-dbg_4.2.2-5_i386.deb
  lib64objc2_4.2.2-5_i386.deb
  lib64objc2-dbg_4.2.2-5_i386.deb
  libffi4_4.2.2-5_i386.deb
  libffi4-dev_4.2.2-5_i386.deb
  libffi4-dbg_4.2.2-5_i386.deb
  lib64ffi4_4.2.2-5_i386.deb
  lib64ffi4-dbg_4.2.2-5_i386.deb
  g++-4.2-multilib_4.2.2-5_i386.deb
  g++-4.2_4.2.2-5_i386.deb
  libstdc++6_4.2.2-5_i386.deb
  lib64stdc++6_4.2.2-5_i386.deb
  lib64stdc++6-4.2-dbg_4.2.2-5_i386.deb
  libstdc++6-4.2-dev_4.2.2-5_i386.deb
  libstdc++6-4.2-pic_4.2.2-5_i386.deb
  libstdc++6-4.2-dbg_4.2.2-5_i386.deb
  libgfortran2_4.2.2-5_i386.deb
  libgfortran2-dbg_4.2.2-5_i386.deb
  lib64gfortran2_4.2.2-5_i386.deb
  lib64gfortran2-dbg_4.2.2-5_i386.deb
  gfortran-4.2-multilib_4.2.2-5_i386.deb
  gfortran-4.2_4.2.2-5_i386.deb
  treelang-4.2_4.2.2-5_i386.deb
  gcc-4.2-multilib_4.2.2-5_i386.deb
  gcc-4.2_4.2.2-5_i386.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



gcc-4.2_4.2.2-5_i386.changes ACCEPTED

2008-01-02 Thread Debian Installer

Accepted:
cpp-4.2-doc_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/cpp-4.2-doc_4.2.2-5_all.deb
cpp-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/cpp-4.2_4.2.2-5_i386.deb
fixincludes_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/fixincludes_4.2.2-5_i386.deb
g++-4.2-multilib_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/g++-4.2-multilib_4.2.2-5_i386.deb
g++-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/g++-4.2_4.2.2-5_i386.deb
gcc-4.2-base_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gcc-4.2-base_4.2.2-5_i386.deb
gcc-4.2-doc_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/gcc-4.2-doc_4.2.2-5_all.deb
gcc-4.2-locales_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/gcc-4.2-locales_4.2.2-5_all.deb
gcc-4.2-multilib_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gcc-4.2-multilib_4.2.2-5_i386.deb
gcc-4.2-source_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/gcc-4.2-source_4.2.2-5_all.deb
gcc-4.2_4.2.2-5.diff.gz
  to pool/main/g/gcc-4.2/gcc-4.2_4.2.2-5.diff.gz
gcc-4.2_4.2.2-5.dsc
  to pool/main/g/gcc-4.2/gcc-4.2_4.2.2-5.dsc
gcc-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gcc-4.2_4.2.2-5_i386.deb
gfortran-4.2-doc_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/gfortran-4.2-doc_4.2.2-5_all.deb
gfortran-4.2-multilib_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gfortran-4.2-multilib_4.2.2-5_i386.deb
gfortran-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gfortran-4.2_4.2.2-5_i386.deb
gobjc++-4.2-multilib_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gobjc++-4.2-multilib_4.2.2-5_i386.deb
gobjc++-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gobjc++-4.2_4.2.2-5_i386.deb
gobjc-4.2-multilib_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gobjc-4.2-multilib_4.2.2-5_i386.deb
gobjc-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/gobjc-4.2_4.2.2-5_i386.deb
lib64ffi4-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64ffi4-dbg_4.2.2-5_i386.deb
lib64ffi4_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64ffi4_4.2.2-5_i386.deb
lib64gcc1-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gcc1-dbg_4.2.2-5_i386.deb
lib64gcc1_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gcc1_4.2.2-5_i386.deb
lib64gfortran2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gfortran2-dbg_4.2.2-5_i386.deb
lib64gfortran2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gfortran2_4.2.2-5_i386.deb
lib64gomp1-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gomp1-dbg_4.2.2-5_i386.deb
lib64gomp1_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64gomp1_4.2.2-5_i386.deb
lib64mudflap0-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64mudflap0-dbg_4.2.2-5_i386.deb
lib64mudflap0_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64mudflap0_4.2.2-5_i386.deb
lib64objc2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64objc2-dbg_4.2.2-5_i386.deb
lib64objc2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64objc2_4.2.2-5_i386.deb
lib64stdc++6-4.2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64stdc++6-4.2-dbg_4.2.2-5_i386.deb
lib64stdc++6_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/lib64stdc++6_4.2.2-5_i386.deb
libffi4-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libffi4-dbg_4.2.2-5_i386.deb
libffi4-dev_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libffi4-dev_4.2.2-5_i386.deb
libffi4_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libffi4_4.2.2-5_i386.deb
libgcc1-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgcc1-dbg_4.2.2-5_i386.deb
libgcc1_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgcc1_4.2.2-5_i386.deb
libgfortran2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgfortran2-dbg_4.2.2-5_i386.deb
libgfortran2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgfortran2_4.2.2-5_i386.deb
libgomp1-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgomp1-dbg_4.2.2-5_i386.deb
libgomp1_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libgomp1_4.2.2-5_i386.deb
libmudflap0-4.2-dev_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libmudflap0-4.2-dev_4.2.2-5_i386.deb
libmudflap0-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libmudflap0-dbg_4.2.2-5_i386.deb
libmudflap0_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libmudflap0_4.2.2-5_i386.deb
libobjc2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libobjc2-dbg_4.2.2-5_i386.deb
libobjc2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libobjc2_4.2.2-5_i386.deb
libstdc++6-4.2-dbg_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libstdc++6-4.2-dbg_4.2.2-5_i386.deb
libstdc++6-4.2-dev_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libstdc++6-4.2-dev_4.2.2-5_i386.deb
libstdc++6-4.2-doc_4.2.2-5_all.deb
  to pool/main/g/gcc-4.2/libstdc++6-4.2-doc_4.2.2-5_all.deb
libstdc++6-4.2-pic_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libstdc++6-4.2-pic_4.2.2-5_i386.deb
libstdc++6_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/libstdc++6_4.2.2-5_i386.deb
protoize_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/protoize_4.2.2-5_i386.deb
treelang-4.2_4.2.2-5_i386.deb
  to pool/main/g/gcc-4.2/treelang-4.2_4.2.2-5_i386.deb


Override entries for your package:
cpp-4.2-doc_4.2.2-5_all.deb - optional doc
cpp-4.2_4.2.2-5_i386.deb - optional interpreters
fixincludes_4.2.2-5_i386.deb - optional devel
g++-4.2-multilib_4.2.2-5_i386.deb - optional devel
g++-4.2_4.2.2-5_i386.deb - optional 

Bug#441633: marked as done ([mips/mipsel] undefined reference to `$L2131' with -O1)

2008-01-02 Thread Debian Bug Tracking System
)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2-source_4.2.2-5_all.deb
 e9e25e4db01044f35c09907fbd34a1f5 186052 doc optional 
cpp-4.2-doc_4.2.2-5_all.deb
 2ba8bf5eb43f7a90729d2bc6dadd6f30 6465008 doc optional 
libstdc++6-4.2-doc_4.2.2-5_all.deb
 2162d03368ba3a054701a09224f15df7 216088 doc optional 
gfortran-4.2-doc_4.2.2-5_all.deb
 0371a4c5ac19581bce28c363e106a78b 1793634 doc optional 
gcc-4.2-doc_4.2.2-5_all.deb
 f5e118588661921f970adbe6c0d8d971 2016568 devel optional 
gcc-4.2-locales_4.2.2-5_all.deb
 8f22c44b8bc94efb0bb833862f42a24f 104050 libs required 
gcc-4.2-base_4.2.2-5_i386.deb
 ca58dd7e979193a694ea4730a1f2fa89 23260 libs required libgcc1_4.2.2-5_i386.deb
 0bc30047efd93d95b17a760f45eca1e4 49224 libdevel extra 
libgcc1-dbg_4.2.2-5_i386.deb
 208a687b8b26a8da30310e28f1f80c61 27198 libs

Bug#452451: marked as done (compilation of lmms:internal compiler error)

2008-01-02 Thread Debian Bug Tracking System
 Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2

Bug#446714: marked as done (gcc-4.3: Fails to build a program which builds fine with gcc-4.1)

2008-01-02 Thread Debian Bug Tracking System
: 1.7
Date: Wed, 02 Jan 2008 15:49:30 +0100
Source: gcc-4.2
Binary: lib32gomp1-dbg libobjc2-dbg gfortran-4.2 lib32ffi4-dbg libobjc2 
gcc-4.2-source gcc-4.2-soft-float libgcc2-dbg lib64gomp1 lib32gcc1 
lib32gfortran2 libgomp1 gcc-4.2 libffi4-dev gobjc-4.2 lib64objc2-dbg 
libmudflap0-dbg libmudflap0-4.2-dev lib32stdc++6 libgcc4-dbg g++-4.2-multilib 
libgcc1-dbg gfortran-4.2-doc libgomp1-dbg gobjc-4.2-multilib libstdc++6 
lib32ffi4 lib64objc2 lib64gfortran2-dbg lib32objc2-dbg libffi4-dbg libgcc1 
libgcc2 protoize libgfortran2 gcc-4.2-hppa64 lib32gcc1-dbg gcc-4.2-locales 
lib64stdc++6 libffi4 lib64gfortran2 lib64ffi4 libgcc4 libstdc++6-4.2-dbg 
lib64gcc1-dbg gcc-4.2-doc g++-4.2 gfortran-4.2-multilib cpp-4.2 gcc-4.2-base 
gobjc++-4.2-multilib lib64mudflap0-dbg libstdc++6-4.2-dev lib32mudflap0 
libgfortran2-dbg libstdc++6-4.2-pic lib32gomp1 lib64gcc1 libstdc++6-4.2-doc 
lib32stdc++6-4.2-dbg lib64ffi4-dbg lib32mudflap0-dbg gobjc++-4.2 
lib32gfortran2-dbg fixincludes cpp-4.2-doc lib64gomp1-dbg treelang-4.2 
gcc-4.2-multilib lib32objc2 libmudflap0 lib64stdc++6-4.2-dbg lib64mudflap0
Architecture: source all i386
Version: 4.2.2-5
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-gcc@lists.debian.org
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.2- The GNU C preprocessor
 cpp-4.2-doc - Documentation for the GNU C preprocessor (cpp)
 fixincludes - Fix non-ANSI header files
 g++-4.2- The GNU C++ compiler
 g++-4.2-multilib - The GNU C++ compiler (multilib files)
 gcc-4.2- The GNU C compiler
 gcc-4.2-base - The GNU Compiler Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non

Bug#457104: marked as done (gcc-4.2: [hppa] ICE when building cfitsio3)

2008-01-02 Thread Debian Bug Tracking System

Format: 1.7
Date: Wed, 02 Jan 2008 15:49:30 +0100
Source: gcc-4.2
Binary: lib32gomp1-dbg libobjc2-dbg gfortran-4.2 lib32ffi4-dbg libobjc2 
gcc-4.2-source gcc-4.2-soft-float libgcc2-dbg lib64gomp1 lib32gcc1 
lib32gfortran2 libgomp1 gcc-4.2 libffi4-dev gobjc-4.2 lib64objc2-dbg 
libmudflap0-dbg libmudflap0-4.2-dev lib32stdc++6 libgcc4-dbg g++-4.2-multilib 
libgcc1-dbg gfortran-4.2-doc libgomp1-dbg gobjc-4.2-multilib libstdc++6 
lib32ffi4 lib64objc2 lib64gfortran2-dbg lib32objc2-dbg libffi4-dbg libgcc1 
libgcc2 protoize libgfortran2 gcc-4.2-hppa64 lib32gcc1-dbg gcc-4.2-locales 
lib64stdc++6 libffi4 lib64gfortran2 lib64ffi4 libgcc4 libstdc++6-4.2-dbg 
lib64gcc1-dbg gcc-4.2-doc g++-4.2 gfortran-4.2-multilib cpp-4.2 gcc-4.2-base 
gobjc++-4.2-multilib lib64mudflap0-dbg libstdc++6-4.2-dev lib32mudflap0 
libgfortran2-dbg libstdc++6-4.2-pic lib32gomp1 lib64gcc1 libstdc++6-4.2-doc 
lib32stdc++6-4.2-dbg lib64ffi4-dbg lib32mudflap0-dbg gobjc++-4.2 
lib32gfortran2-dbg fixincludes cpp-4.2-doc lib64gomp1-dbg treelang-4.2 
gcc-4.2-multilib lib32objc2 libmudflap0 lib64stdc++6-4.2-dbg lib64mudflap0
Architecture: source all i386
Version: 4.2.2-5
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-gcc@lists.debian.org
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.2- The GNU C preprocessor
 cpp-4.2-doc - Documentation for the GNU C preprocessor (cpp)
 fixincludes - Fix non-ANSI header files
 g++-4.2- The GNU C++ compiler
 g++-4.2-multilib - The GNU C++ compiler (multilib files)
 gcc-4.2- The GNU C compiler
 gcc-4.2-base - The GNU Compiler Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference

Bug#446714: marked as done (gcc-4.3: Fails to build a program which builds fine with gcc-4.1)

2008-01-02 Thread Debian Bug Tracking System
: 1.7
Date: Wed, 02 Jan 2008 15:49:30 +0100
Source: gcc-4.2
Binary: lib32gomp1-dbg libobjc2-dbg gfortran-4.2 lib32ffi4-dbg libobjc2 
gcc-4.2-source gcc-4.2-soft-float libgcc2-dbg lib64gomp1 lib32gcc1 
lib32gfortran2 libgomp1 gcc-4.2 libffi4-dev gobjc-4.2 lib64objc2-dbg 
libmudflap0-dbg libmudflap0-4.2-dev lib32stdc++6 libgcc4-dbg g++-4.2-multilib 
libgcc1-dbg gfortran-4.2-doc libgomp1-dbg gobjc-4.2-multilib libstdc++6 
lib32ffi4 lib64objc2 lib64gfortran2-dbg lib32objc2-dbg libffi4-dbg libgcc1 
libgcc2 protoize libgfortran2 gcc-4.2-hppa64 lib32gcc1-dbg gcc-4.2-locales 
lib64stdc++6 libffi4 lib64gfortran2 lib64ffi4 libgcc4 libstdc++6-4.2-dbg 
lib64gcc1-dbg gcc-4.2-doc g++-4.2 gfortran-4.2-multilib cpp-4.2 gcc-4.2-base 
gobjc++-4.2-multilib lib64mudflap0-dbg libstdc++6-4.2-dev lib32mudflap0 
libgfortran2-dbg libstdc++6-4.2-pic lib32gomp1 lib64gcc1 libstdc++6-4.2-doc 
lib32stdc++6-4.2-dbg lib64ffi4-dbg lib32mudflap0-dbg gobjc++-4.2 
lib32gfortran2-dbg fixincludes cpp-4.2-doc lib64gomp1-dbg treelang-4.2 
gcc-4.2-multilib lib32objc2 libmudflap0 lib64stdc++6-4.2-dbg lib64mudflap0
Architecture: source all i386
Version: 4.2.2-5
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-gcc@lists.debian.org
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.2- The GNU C preprocessor
 cpp-4.2-doc - Documentation for the GNU C preprocessor (cpp)
 fixincludes - Fix non-ANSI header files
 g++-4.2- The GNU C++ compiler
 g++-4.2-multilib - The GNU C++ compiler (multilib files)
 gcc-4.2- The GNU C compiler
 gcc-4.2-base - The GNU Compiler Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non

Bug#444873: marked as done ([fixed in 4.3] g++-4.2 [hppa] internal compiler error while building saods9)

2008-01-02 Thread Debian Bug Tracking System
-dbg - Runtime library for GNU Objective-C applications (64 bit 
debug sy
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2-source_4.2.2-5_all.deb
 e9e25e4db01044f35c09907fbd34a1f5 186052 doc optional 
cpp-4.2-doc_4.2.2-5_all.deb
 2ba8bf5eb43f7a90729d2bc6dadd6f30 6465008 doc optional 
libstdc++6-4.2-doc_4.2.2-5_all.deb
 2162d03368ba3a054701a09224f15df7 216088 doc optional 
gfortran-4.2-doc_4.2.2-5_all.deb
 0371a4c5ac19581bce28c363e106a78b 1793634 doc optional 
gcc-4.2-doc_4.2.2-5_all.deb
 f5e118588661921f970adbe6c0d8d971 2016568 devel optional 
gcc-4.2-locales_4.2.2-5_all.deb
 8f22c44b8bc94efb0bb833862f42a24f 104050 libs required 
gcc-4.2-base_4.2.2-5_i386.deb
 ca58dd7e979193a694ea4730a1f2fa89 23260 libs required libgcc1_4.2.2-5_i386.deb
 0bc30047efd93d95b17a760f45eca1e4 49224 libdevel extra 
libgcc1-dbg_4.2.2-5_i386.deb
 208a687b8b26a8da30310e28f1f80c61 27198 libs optional lib64gcc1_4.2.2-5_i386.deb
 ce3c06616d49826afd5761f5a3177e37 56434 libdevel extra 
lib64gcc1-dbg_4.2.2-5_i386.deb
 1dcfc924411d8b081fab9354735d76b4 11892 libs optional libgomp1_4.2.2-5_i386.deb
 e825292226090873d392e6c463be7dc1 31852 libdevel extra 
libgomp1-dbg_4.2.2-5_i386.deb
 d3572aa5ea8db05d9ace4795c75006fe 13868 libs optional 
lib64gomp1_4.2.2-5_i386.deb
 de5ccf35a592d2a6b684b62b60efec4f 32718 libdevel extra 
lib64gomp1-dbg_4.2.2-5_i386.deb
 ec40eeca5d4e47b62b312e622139b39d 2483970 interpreters optional 
cpp-4.2_4.2.2-5_i386.deb
 c87c8372fb295e1a75e0aaf38ea9c377 40590 devel optional protoize_4.2.2-5_i386.deb
 046c72fdada805dcfd6fc3f1575a3f1a 85028 devel optional

Bug#445336: marked as done ([fixed in 4.3] [hppa] ICE when building asterisk)

2008-01-02 Thread Debian Bug Tracking System
)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2-source_4.2.2-5_all.deb
 e9e25e4db01044f35c09907fbd34a1f5 186052 doc optional 
cpp-4.2-doc_4.2.2-5_all.deb
 2ba8bf5eb43f7a90729d2bc6dadd6f30 6465008 doc optional 
libstdc++6-4.2-doc_4.2.2-5_all.deb
 2162d03368ba3a054701a09224f15df7 216088 doc optional 
gfortran-4.2-doc_4.2.2-5_all.deb
 0371a4c5ac19581bce28c363e106a78b 1793634 doc optional 
gcc-4.2-doc_4.2.2-5_all.deb
 f5e118588661921f970adbe6c0d8d971 2016568 devel optional 
gcc-4.2-locales_4.2.2-5_all.deb
 8f22c44b8bc94efb0bb833862f42a24f 104050 libs required 
gcc-4.2-base_4.2.2-5_i386.deb
 ca58dd7e979193a694ea4730a1f2fa89 23260 libs required libgcc1_4.2.2-5_i386.deb
 0bc30047efd93d95b17a760f45eca1e4 49224 libdevel extra 
libgcc1-dbg_4.2.2

Bug#451047: marked as done (gcc-4.2: [hppa] ICE in reload_cse_simplify_operands, at postreload.c:392)

2008-01-02 Thread Debian Bug Tracking System
-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2-source_4.2.2-5_all.deb
 e9e25e4db01044f35c09907fbd34a1f5 186052 doc optional 
cpp-4.2-doc_4.2.2-5_all.deb
 2ba8bf5eb43f7a90729d2bc6dadd6f30 6465008 doc optional 
libstdc++6-4.2-doc_4.2.2-5_all.deb

Bug#445336: marked as done ([fixed in 4.3] [hppa] ICE when building asterisk)

2008-01-02 Thread Debian Bug Tracking System
)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2-source_4.2.2-5_all.deb
 e9e25e4db01044f35c09907fbd34a1f5 186052 doc optional 
cpp-4.2-doc_4.2.2-5_all.deb
 2ba8bf5eb43f7a90729d2bc6dadd6f30 6465008 doc optional 
libstdc++6-4.2-doc_4.2.2-5_all.deb
 2162d03368ba3a054701a09224f15df7 216088 doc optional 
gfortran-4.2-doc_4.2.2-5_all.deb
 0371a4c5ac19581bce28c363e106a78b 1793634 doc optional 
gcc-4.2-doc_4.2.2-5_all.deb
 f5e118588661921f970adbe6c0d8d971 2016568 devel optional 
gcc-4.2-locales_4.2.2-5_all.deb
 8f22c44b8bc94efb0bb833862f42a24f 104050 libs required 
gcc-4.2-base_4.2.2-5_i386.deb
 ca58dd7e979193a694ea4730a1f2fa89 23260 libs required libgcc1_4.2.2-5_i386.deb
 0bc30047efd93d95b17a760f45eca1e4 49224 libdevel extra 
libgcc1-dbg_4.2.2

Bug#457104: marked as done (gcc-4.2: [hppa] ICE when building cfitsio3)

2008-01-02 Thread Debian Bug Tracking System

Format: 1.7
Date: Wed, 02 Jan 2008 15:49:30 +0100
Source: gcc-4.2
Binary: lib32gomp1-dbg libobjc2-dbg gfortran-4.2 lib32ffi4-dbg libobjc2 
gcc-4.2-source gcc-4.2-soft-float libgcc2-dbg lib64gomp1 lib32gcc1 
lib32gfortran2 libgomp1 gcc-4.2 libffi4-dev gobjc-4.2 lib64objc2-dbg 
libmudflap0-dbg libmudflap0-4.2-dev lib32stdc++6 libgcc4-dbg g++-4.2-multilib 
libgcc1-dbg gfortran-4.2-doc libgomp1-dbg gobjc-4.2-multilib libstdc++6 
lib32ffi4 lib64objc2 lib64gfortran2-dbg lib32objc2-dbg libffi4-dbg libgcc1 
libgcc2 protoize libgfortran2 gcc-4.2-hppa64 lib32gcc1-dbg gcc-4.2-locales 
lib64stdc++6 libffi4 lib64gfortran2 lib64ffi4 libgcc4 libstdc++6-4.2-dbg 
lib64gcc1-dbg gcc-4.2-doc g++-4.2 gfortran-4.2-multilib cpp-4.2 gcc-4.2-base 
gobjc++-4.2-multilib lib64mudflap0-dbg libstdc++6-4.2-dev lib32mudflap0 
libgfortran2-dbg libstdc++6-4.2-pic lib32gomp1 lib64gcc1 libstdc++6-4.2-doc 
lib32stdc++6-4.2-dbg lib64ffi4-dbg lib32mudflap0-dbg gobjc++-4.2 
lib32gfortran2-dbg fixincludes cpp-4.2-doc lib64gomp1-dbg treelang-4.2 
gcc-4.2-multilib lib32objc2 libmudflap0 lib64stdc++6-4.2-dbg lib64mudflap0
Architecture: source all i386
Version: 4.2.2-5
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-gcc@lists.debian.org
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.2- The GNU C preprocessor
 cpp-4.2-doc - Documentation for the GNU C preprocessor (cpp)
 fixincludes - Fix non-ANSI header files
 g++-4.2- The GNU C++ compiler
 g++-4.2-multilib - The GNU C++ compiler (multilib files)
 gcc-4.2- The GNU C compiler
 gcc-4.2-base - The GNU Compiler Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference

Bug#452451: marked as done (compilation of lmms:internal compiler error)

2008-01-02 Thread Debian Bug Tracking System
 Collection (base package)
 gcc-4.2-doc - Documentation for the GNU compilers (gcc, gobjc, g++)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-doc - Documentation for the GNU Fortran compiler (gfortran)
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib64ffi4  - Foreign Function Interface library runtime (64bit)
 lib64ffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libffi4- Foreign Function Interface library runtime
 libffi4-dbg - Foreign Function Interface library runtime (debug symbols)
 libffi4-dev - Foreign Function Interface library (development files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-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.2-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 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.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
 protoize   - Create/remove ANSI prototypes from C code
 treelang-4.2 - The GNU Treelang compiler
Closes: 441633 444873 445336 446714 451047 452451
Changes: 
 gcc-4.2 (4.2.2-5) unstable; urgency=low
 .
   [Matthias Klose]
   * Update to SVN 20080102 from the ubuntu/gcc-4_2-branch.
 - Fix PR middle-end/32889, ICE in delete_output_reload.
   Closes: #444873, #445336, #451047.
 - Fix PR target/34215, ICE in assign_386_stack_local.
   Closes: #446714, #452451.
 - Fix PR target/33848, reference to non-existent label at -O1 on
   mips/mipsel. Closes: #441633.
   * debian/rules.d/binary-java.mk: dpkg-shlibsdeps can't handle the dangling
 symlink to libgcj_bc.so.1. Remove it temporarily.
   * Add libgcj_bc to the libgcj8-1 shlibs file.
   * Fix build failures for gnat-4.2, gpc-4.2, gdc-4.2 introduced by recent
 gdc changes.
   * Add symbol files for libgcc1, lib32gcc1, lib64gcc1, libstdc++6,
 lib32stdc++6, lib64stdc++6, libgomp1, lib32gomp1, lib64gomp1, libffi4,
 lib32ffi4, lib64ffi4, libobjc2, lib32objc2, lib64objc2. Adjust build
 dependencies on dpkg-dev and debhelper.
 Adjust build-dependency on dpkg-dev.
 .
   [Arthur Loiret]
   * Fix gdc-4.2 build failure.
   * Update gdc to upstream SVN 20071124.
 - d-bi-attrs: Support attributes on declarations in other modules.
 - d-codegen.cc (IRState::attributes): Support constant declarations as
   string arguments.
   * Enable libphobos:
 - gdc-4.2.dpatch: Fix ICEs.
 - gdc-4.2-build.dpatch: Update, make it cleaner.
   * Install libphobos in the private gcc lib dir.
   * gdc-4.2.dpatch: Update from gdc-4.1.dpatch.
 - gcc/tree-sra.c: Do not use SRA on structs with aliased fields created
   for anonymous unions.
 - gcc/predict.c: Add null-pointer check.
   * debian/rules.defs: Disable phobos on hurd-i386.
 - gdc-hurd-proc_maps.dpatch: Remove.
Files: 
 c7a4446e2ce211bca8698295a99131cc 2903 devel optional gcc-4.2_4.2.2-5.dsc
 48b61f84b8005c2d4d352ee056a3f8b6 830781 devel optional gcc-4.2_4.2.2-5.diff.gz
 8fa286328e3e8965fe1f063b4d9dafe9 48050146 devel optional 
gcc-4.2