user1396736
user1396736

Reputation: 39

Segmentation fault GCC

I'm modifying gcc, specifically adding a new clause to OpenMP.

after compiling my test program it gives me this error:

"test.c: In function 'main':
test.c:10:1: internal compiler error: Segmentation fault"

How can i debug this?

I've searched for a while but have not found useful information...

Upvotes: 0

Views: 1987

Answers (1)

subodh1989
subodh1989

Reputation: 716

Here is a good tutorial on gdb : http://www.cs.cmu.edu/~gilpin/tutorial/

Upvotes: 1

Related Questions