This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Found Bug


I think I found a bug in g++.  I got the following error everytime I
tried to compile my code and after I rebooted the machine:
	../../gcc/dwarf2out.c:940: Internal compiler error in function reg_save

I am running LInux RedHat 6.0  egcs 1.1.2-12.  I have attached my
Makefile, The bug occurs with "make histo".  This is my master's thesis
program.  So please let me know if there is a way to fix this.

What do you mean by preprocessed output of the source file?
-- 
  Cameron Cutter                                                        
  Jefferson Lab Hall B
  Computing and Instrumentation Group
  phone: (757) 269-5009    pager: 849-7322
ROOTCFLAGS = $(shell root-config --cflags)
ROOTLIBS = $(shell root-config --libs)
ROOTGLIBS = $(shell root-config --glibs)

LIBS = $(ROOTLIBS)
GLIBS = $(ROOTGLIBS)
CLIB = /usr/local/coda/2.1/Linux/lib


pdaq.class : pdaq.java MainPane.java WelcomePanel.java DCOnline.java DCOffline.java histo
	javac -g pdaq.java

histo : histo.o
	g++ -g -o histo histo.o -L$(CLIB) $(GLIBS) -lcoda

histo.o : histo.C cadu_data.h buttongui.h
	g++ -O -Wall -fPIC -I/usr/local/root/include -I$(CODA)/evio -g -c histo.C

clean :
	-rm histo
	-rm *~
	-rm *class
	-rm *o


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]