public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Compilation using -O2 Problem
@ 1999-10-07 17:17 Gerald E. Bennett
  1999-10-07 23:31 ` Tim Prince
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gerald E. Bennett @ 1999-10-07 17:17 UTC (permalink / raw)
  To: help-gcc

I am trying to compile my code,
it compiles fine when I don't use the -O2 option
as as soon as I ue it I get the following errror:

hashtabledata.cpp:38: Internal compiler error.
hashtabledata.cpp:38: Please submit a full bug report to
`bug-g++@prep.ai.mit.edu'.
make: *** [hashtabledata.lo] Error 1

Why is this ?
 How can I get more compile info to know what's going on ?

Thanks


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Compilation using -O2 Problem
  1999-10-07 17:17 Compilation using -O2 Problem Gerald E. Bennett
@ 1999-10-07 23:31 ` Tim Prince
  1999-10-31 13:57   ` Tim Prince
  1999-10-09  6:21 ` Ashutosh S. Rajekar
  1999-10-31 13:57 ` Gerald E. Bennett
  2 siblings, 1 reply; 6+ messages in thread
From: Tim Prince @ 1999-10-07 23:31 UTC (permalink / raw)
  To: help-gcc

> Internal compiler error.
>hashtabledata.cpp:38: Please submit a full bug report

Any Internal Compiler Error is considered a compiler bug, even if provoked by
bad source code, but you do need to follow the bug reporting instructions, and
along the way, you might want to be sure that the bug is present in a current
version such as 2.95.1.
Tim Prince
tprince@computer.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Compilation using -O2 Problem
  1999-10-07 17:17 Compilation using -O2 Problem Gerald E. Bennett
  1999-10-07 23:31 ` Tim Prince
@ 1999-10-09  6:21 ` Ashutosh S. Rajekar
  1999-10-31 13:57   ` Ashutosh S. Rajekar
  1999-10-31 13:57 ` Gerald E. Bennett
  2 siblings, 1 reply; 6+ messages in thread
From: Ashutosh S. Rajekar @ 1999-10-09  6:21 UTC (permalink / raw)
  To: help-gcc

On Thu, 7 Oct 1999, Gerald E. Bennett wrote:

> I am trying to compile my code,
> it compiles fine when I don't use the -O2 option
> as as soon as I ue it I get the following errror:
> 
> hashtabledata.cpp:38: Internal compiler error.
	GCC uses many pointers when it is compiling your program. When it
just manages to screw up, either because of slow mem and fast CPU, or the
other way, it gets a SIG11, or SIGSEGV, a segmentation violation, or
internal compiler error. Just compile the program again, and it will work
smoothly.

> Why is this ?
>  How can I get more compile info to know what's going on ?

	Try the man page. Or you can get the gcc docs from any mirror site,
say www.djgpp.com, or whatever.


-------------------
Ashutosh S. Rajekar
http://i.am/asr

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Compilation using -O2 Problem
  1999-10-07 17:17 Compilation using -O2 Problem Gerald E. Bennett
  1999-10-07 23:31 ` Tim Prince
  1999-10-09  6:21 ` Ashutosh S. Rajekar
@ 1999-10-31 13:57 ` Gerald E. Bennett
  2 siblings, 0 replies; 6+ messages in thread
From: Gerald E. Bennett @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

I am trying to compile my code,
it compiles fine when I don't use the -O2 option
as as soon as I ue it I get the following errror:

hashtabledata.cpp:38: Internal compiler error.
hashtabledata.cpp:38: Please submit a full bug report to
`bug-g++@prep.ai.mit.edu'.
make: *** [hashtabledata.lo] Error 1

Why is this ?
 How can I get more compile info to know what's going on ?

Thanks


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Compilation using -O2 Problem
  1999-10-09  6:21 ` Ashutosh S. Rajekar
@ 1999-10-31 13:57   ` Ashutosh S. Rajekar
  0 siblings, 0 replies; 6+ messages in thread
From: Ashutosh S. Rajekar @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

On Thu, 7 Oct 1999, Gerald E. Bennett wrote:

> I am trying to compile my code,
> it compiles fine when I don't use the -O2 option
> as as soon as I ue it I get the following errror:
> 
> hashtabledata.cpp:38: Internal compiler error.
	GCC uses many pointers when it is compiling your program. When it
just manages to screw up, either because of slow mem and fast CPU, or the
other way, it gets a SIG11, or SIGSEGV, a segmentation violation, or
internal compiler error. Just compile the program again, and it will work
smoothly.

> Why is this ?
>  How can I get more compile info to know what's going on ?

	Try the man page. Or you can get the gcc docs from any mirror site,
say www.djgpp.com, or whatever.


-------------------
Ashutosh S. Rajekar
http://i.am/asr

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Compilation using -O2 Problem
  1999-10-07 23:31 ` Tim Prince
@ 1999-10-31 13:57   ` Tim Prince
  0 siblings, 0 replies; 6+ messages in thread
From: Tim Prince @ 1999-10-31 13:57 UTC (permalink / raw)
  To: help-gcc

> Internal compiler error.
>hashtabledata.cpp:38: Please submit a full bug report

Any Internal Compiler Error is considered a compiler bug, even if provoked by
bad source code, but you do need to follow the bug reporting instructions, and
along the way, you might want to be sure that the bug is present in a current
version such as 2.95.1.
Tim Prince
tprince@computer.org

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~1999-10-31 13:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-07 17:17 Compilation using -O2 Problem Gerald E. Bennett
1999-10-07 23:31 ` Tim Prince
1999-10-31 13:57   ` Tim Prince
1999-10-09  6:21 ` Ashutosh S. Rajekar
1999-10-31 13:57   ` Ashutosh S. Rajekar
1999-10-31 13:57 ` Gerald E. Bennett

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).