[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: DDD compilation
From: |
Tim Mooney |
Subject: |
Re: DDD compilation |
Date: |
Wed, 18 Apr 2001 11:24:40 -0500 (CDT) |
In regard to: DDD compilation, Ricardo Lima said (at 4:33pm on Apr 18, 2001):
>Hi,
>I'd be grateful if you can help me with the compilation of ddd-3.3.
>I got the following error message while executing the make command:
>
>c++ -DHAVE_CONFIG_H -I. -I. -I. -I./.. -DNDEBUG -O2 -g -W -Wall
>-trigraphs -c HelpCB.C
>HelpCB.C: In function `void PopupTip(void *, XtIntervalId *)':
>HelpCB.C:2166: Internal compiler error in `scan_region', at
>except.c:2566
Your compiler is bombing out because of a bug in it. What version of gcc
are you using?
You could try compiling HelpCB.C manually, without optimization, by doing
cd ddd
c++ -DHAVE_CONFIG_H -I. -I./.. -DNDEBUG -g -W -Wall -trigraphs -c HelpCB.C
and then
cd ..
make
to continue the rest of the compilation.
>This problem can be solved?
Only by fixing your compiler or working around it by finding a way to compile
the code that doesn't trigger the bug. Reducing the optimization is usually
the first thing to try, and that's what I've suggested above.
Tim
--
Tim Mooney address@hidden
Information Technology Services (701) 231-1076 (Voice)
Room 242-J6, IACC Building (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164
- DDD compilation, Ricardo Lima, 2001/04/18
- Re: DDD compilation,
Tim Mooney <=