Bug#118814: preprocessed source needed

2001-12-20 Thread Matthias Klose
reassign 118814 ecawave
retitle 118814 [alpha, fixed with g++-3.0] internal compiler error compiling 
ecawave
tags 118814 + moreinfo wontfix
thanks

however I doubt this will be fixed for g++-2.95 ...




Processed: preprocessed source needed

2001-12-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 118814 ecawave
Bug#118814: ecawave: compile fails with internal compiler error with g++-2.95 
on alpha.
Bug reassigned from package `g++-2.95' to `ecawave'.

> retitle 118814 [alpha, fixed with g++-3.0] internal compiler error compiling 
> ecawave
Bug#118814: ecawave: compile fails with internal compiler error with g++-2.95 
on alpha.
Changed Bug title.

> tags 118814 + moreinfo wontfix
Bug#118814: [alpha, fixed with g++-3.0] internal compiler error compiling 
ecawave
Tags added: moreinfo, wontfix

> thanks
Stopping processing here.

Please contact me if you need assistance.

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




Processed: retitle g++ report

2001-12-20 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> retitle 94955 [mips] Linking with libstdc++ changes behavior of a program 
> (which does not require libstdc++)
Bug#94955: Linking with libstdc++ changes behavior of a program (which does not 
require libstdc++)
Changed Bug title.

> reassign 94955 g++-2.95
Bug#94955: [mips] Linking with libstdc++ changes behavior of a program (which 
does not require libstdc++)
Bug reassigned from package `libstdc++2.10' to `g++-2.95'.

> thanks
Stopping processing here.

Please contact me if you need assistance.

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




Re: C++ Exception handlin on mips [was Re: Mozilla...]

2001-12-20 Thread Matthias Klose
Is this a problem, that you can work around using g++-3.0 on mips? I
see the menu package up to date for mips. just wanting to reduce the
severity of the report from `grave' to `important'.

> On Wed, Nov 28, 2001 at 03:29:31AM +, Colin Watson wrote:
> > On Mon, 26 Nov 2001 at 19:01:21 +0100, Guido Guenther wrote:
> > > This bug is triggered by a problem with C++ exception handling on
> > > mips. So not a bug in menu itself but rather in g++-2.95.4
> > 
> > So can this bug be reassigned to g++?
> Yes. Discussion is at:
>  http://lists.debian.org/debian-mips/2001/debian-mips-200111/msg00090.html

Guido Guenther writes:
> On Mon, Nov 26, 2001 at 01:47:55PM -0500, Christopher C. Chimelis wrote:
> > 
> > On Mon, 26 Nov 2001, Guido Guenther wrote:
> > 
> > > Could you check the source code if these packages crash while messing
> > > with C++ exceptions? I just had a quick look into the menu package and
> > > it seems that C++ exception handling is broken on mips using g++-2.95.4. 
> > > A testcase like:
> > > 
> > > #include 
> > > #include 
> > > 
> > > class ferror_open {
> > >   int a;
> > > public:
> > >   ferror_open():a(2){};
> > >   int message(){
> > > return a;
> > >   };
> > > };
> > > 
> > > int main()
> > > {
> > >   try {
> > >   throw ferror_open();
> > >   } catch(ferror_open d){ cout << d.message() << endl;};
> > > }
> > 
> > Thanks for the testcase.  I meant to make one when alpha started having EH
> > problems awhile back, but never got to itMatthias, I believe this one
> > will also catch the case that I saw on alpha.
> 
> Interesting enough the program works as expected when compiled with
> -static like "g++ -ggdb -o throw-2.95 throw.cc" (linker bug?)
>  -- Guido
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: C++ Exception handlin on mips [was Re: Mozilla...]

2001-12-20 Thread Guido Guenther
On Thu, Dec 20, 2001 at 06:47:17PM +0100, Matthias Klose wrote:
> Is this a problem, that you can work around using g++-3.0 on mips? I
> see the menu package up to date for mips. just wanting to reduce the
> severity of the report from `grave' to `important'.
Building with g++-3.0 fixes the problem - at least for the menu package.
But I don't know if switching to g++-3.0 as default c++ compiler for
mips is a good idea, since I have not used it much yet. 
 -- Guido

> 
> > On Wed, Nov 28, 2001 at 03:29:31AM +, Colin Watson wrote:
> > > On Mon, 26 Nov 2001 at 19:01:21 +0100, Guido Guenther wrote:
> > > > This bug is triggered by a problem with C++ exception handling on
> > > > mips. So not a bug in menu itself but rather in g++-2.95.4
> > > 
> > > So can this bug be reassigned to g++?
> > Yes. Discussion is at:
> >  http://lists.debian.org/debian-mips/2001/debian-mips-200111/msg00090.html
> 
> Guido Guenther writes:
> > On Mon, Nov 26, 2001 at 01:47:55PM -0500, Christopher C. Chimelis wrote:
> > > 
> > > On Mon, 26 Nov 2001, Guido Guenther wrote:
> > > 
> > > > Could you check the source code if these packages crash while messing
> > > > with C++ exceptions? I just had a quick look into the menu package and
> > > > it seems that C++ exception handling is broken on mips using 
> > > > g++-2.95.4. 
> > > > A testcase like:
> > > > 
> > > > #include 
> > > > #include 
> > > > 
> > > > class ferror_open {
> > > > int a;
> > > > public:
> > > >   ferror_open():a(2){};
> > > >   int message(){
> > > > return a;
> > > >   };
> > > > };
> > > > 
> > > > int main()
> > > > {
> > > > try {
> > > > throw ferror_open();
> > > > } catch(ferror_open d){ cout << d.message() << endl;};
> > > > }
> > > 
> > > Thanks for the testcase.  I meant to make one when alpha started having EH
> > > problems awhile back, but never got to itMatthias, I believe this one
> > > will also catch the case that I saw on alpha.
> > 
> > Interesting enough the program works as expected when compiled with
> > -static like "g++ -ggdb -o throw-2.95 throw.cc" (linker bug?)
> >  -- Guido
> > 
> > 
> > -- 
> > To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
> 

-- 
This kind of limitation can lead administrators to do irrational things,
  like install Windows. Clearly a fix was required. (lwn.net)




Re: C++ Exception handlin on mips [was Re: Mozilla...]

2001-12-20 Thread Matthias Klose
Guido Guenther writes:
> On Thu, Dec 20, 2001 at 06:47:17PM +0100, Matthias Klose wrote:
> > Is this a problem, that you can work around using g++-3.0 on mips? I
> > see the menu package up to date for mips. just wanting to reduce the
> > severity of the report from `grave' to `important'.
> Building with g++-3.0 fixes the problem - at least for the menu package.
> But I don't know if switching to g++-3.0 as default c++ compiler for
> mips is a good idea, since I have not used it much yet. 

no, the question is if the packages affected can be built with
g++-3.0. There is no reason to change the g++ default
compiler. Building the packages with g++-3.0 can be a problem, if a
package depends on a c++ library, which currently is built with
g++-2.95.

Matthias




Bug#111613: acknowledged by developer (no longer reproducible)

2001-12-20 Thread Bill Allombert
Hello, now the SEGV in ld is fixed, but I still get

paer% gcc -O3 ~/preproc.c
../src/basemath/arith2.c: In function `compimagraw':
../src/basemath/arith2.c:1219: Internal error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See http://www.gnu.org/software/gcc/bugs.html> for instructions.

If it works for you, please tell me the version of gcc you use and the path
so I can try. I need to know if the bug is fixed in the HPPA autobuilder
or not. (If it is, I can remove the kludge to compile with -O2 on hppa only).

PARI on HPPA has a bug in the timer (time is often 0) , so I will wait to fix
it before making a new upload that fix the linking problem.

Sorry for the delay I was busy with my PhD thesis.

Regards,

-- 
Bill. <[EMAIL PROTECTED]>




Re: C++ Exception handlin on mips [was Re: Mozilla...]

2001-12-20 Thread Florian Lohoff
On Thu, Dec 20, 2001 at 06:59:07PM +0100, Guido Guenther wrote:
> On Thu, Dec 20, 2001 at 06:47:17PM +0100, Matthias Klose wrote:
> > Is this a problem, that you can work around using g++-3.0 on mips? I
> > see the menu package up to date for mips. just wanting to reduce the
> > severity of the report from `grave' to `important'.
> Building with g++-3.0 fixes the problem - at least for the menu package.
> But I don't know if switching to g++-3.0 as default c++ compiler for
> mips is a good idea, since I have not used it much yet. 

As more people are installing debian-mips/mipsel we probably should to 
a gcc 3.0 upload manually as this at least stops people from reporting
the bug and beeing stuck with a broken installation.

Flo
-- 
Florian Lohoff  [EMAIL PROTECTED] +49-5201-669912
Nine nineth on september the 9th  Welcome to the new billenium


pgp2udQyTCjfp.pgp
Description: PGP signature


Re: C++ Exception handlin on mips [was Re: Mozilla...]

2001-12-20 Thread Matthias Klose
Florian Lohoff writes:
> On Thu, Dec 20, 2001 at 06:59:07PM +0100, Guido Guenther wrote:
> > On Thu, Dec 20, 2001 at 06:47:17PM +0100, Matthias Klose wrote:
> > > Is this a problem, that you can work around using g++-3.0 on mips? I
> > > see the menu package up to date for mips. just wanting to reduce the
> > > severity of the report from `grave' to `important'.
> > Building with g++-3.0 fixes the problem - at least for the menu package.
> > But I don't know if switching to g++-3.0 as default c++ compiler for
> > mips is a good idea, since I have not used it much yet. 
> 
> As more people are installing debian-mips/mipsel we probably should to 
> a gcc 3.0 upload manually as this at least stops people from reporting
> the bug and beeing stuck with a broken installation.

why is it not possible to build menu with g++-3.0 on mips, and with
the default g++ for the other architectures?