From: <pa...@rc...> - 2001-04-27 08:12:25
|
Tony Segredo wrote: > I encountered the attached errors while building on my > Redhat 5.2 system (kernel 2.0.36) I had to modify my > $PATH from the red hat default to get this far. > Originally, make built nothing, with the error "can't > find cc1plus". I found its directory and added it to the > path which got me to the attached file. Something is > probably missing from my environment or the libraries are > out of date. The gcc version is whatever redhat 5.2 > installs. Hi, Tony. I searched for this problem on Google and found a lot of people reporting similar problems but little in the way of definitive solutions. :-( However, there are several different possibilities you could try by hacking the Makefile (not Makefile.in for now) in the mlcd directory: - Change $(CC) to $(CXX) in the following section (which links): $(GOAL): $(OBJS) $(CC) -o $(GOAL) $(OBJS) strip -o $(GOAL)-stripped $(GOAL) - Add "-fno-exceptions -fno-rtti" to CFLAGS near the middle of the file. Please try each of these possible fixes separately and then together, and let me know if you have any luck. David |