Re: Can you please point me where I can get installable gcc

2001-11-26 Thread Alexei Khlebnikov
Suryakant wrote: Can anyone please point me where I can get installabel gcc compiler (gcc 2.9.1 . or later but stable ) You can get any release you want from http://gcc.gnu.org.

internal compiler error building linux kernel 2.4.15|16 on athlonXP synopsis of the problem (one line)

2001-11-26 Thread fade
Submitter-Id: net Originator:Buster McFadden Organization:DeepSky Media Resources Confidential: no Synopsis:internal compiler error building linux kernel 2.4.15|16 on athlonXP Severity:critical Priority:medium Category:c Class: ice-on-legal-code Release:

Re: Mozilla Indy (and other stuff)

2001-11-26 Thread Guido Guenther
On Sat, Nov 24, 2001 at 11:15:12PM +0100, Krzysztof Krzyzaniak wrote: [..snip..] BTW several programs crashes on my Indy i.e. menu packages, konqueror, emacs21, xemacs: Could you check the source code if these packages crash while messing with C++ exceptions? I just had a quick look into the

Bug#121269: gcc allows dollars in identifiers by default on i386 but fails

2001-11-26 Thread Bill Allombert
Package: gcc Version: 2:2.95.4-8 Severity: minor Hello, gcc by default allows dollars in identifiers on i386. Unfortunately, the assembler does not like them. %cat bug.c EOF int $b; main() { for($b=0;$b10;$b++) { printf(%d\n,$b); } } EOF % gcc bug.c /tmp/cc2uXoLV.s: Assembler

Re: Bug#121269: gcc allows dollars in identifiers by default on i386 but fails

2001-11-26 Thread Christopher C. Chimelis
On Mon, 26 Nov 2001, Bill Allombert wrote: gcc by default allows dollars in identifiers on i386. Unfortunately, the assembler does not like them. I'll spare the explanation of why the assembler barfs (since I'm assuming that it's as obvious to everyone else as it is to me), but Bill's correct

Re: Mozilla Indy (and other stuff)

2001-11-26 Thread Christopher C. Chimelis
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

Re: Mozilla Indy (and other stuff)

2001-11-26 Thread Krzysztof Krzyzaniak
On Mon, Nov 26, 2001 at 06:54:33PM +0100, Guido Guenther wrote: On Sat, Nov 24, 2001 at 11:15:12PM +0100, Krzysztof Krzyzaniak wrote: [..snip..] BTW several programs crashes on my Indy i.e. menu packages, konqueror, emacs21, xemacs: Could you check the source code if these packages crash

Re: Bug#121269: gcc allows dollars in identifiers by default on i386 but fails

2001-11-26 Thread Martin v. Loewis
gcc by default allows dollars in identifiers on i386. Unfortunately, the assembler does not like them. I'll spare the explanation of why the assembler barfs (since I'm assuming that it's as obvious to everyone else as it is to me) Could you kindly elaborate a little? I assume one problem

Re: Bug#121269: gcc allows dollars in identifiers by default on i386 but fails

2001-11-26 Thread Christopher C. Chimelis
On Mon, 26 Nov 2001, Martin v. Loewis wrote: Could you kindly elaborate a little? I assume one problem is that $ indicates literal values to the assembler, as in movl$.LC1, (%esp) That explains why dollars at the beginning of identifiers are not acceptable. It doesn't explain