Mail Archives: djgpp/2001/06/05/11:52:50
Hello,
I have this Makefile
CC = gcc
INCLUDE = .
.SUFFIXES: .c .h
CFLAGS=-g -Wall -I$(INCLUDE)
LIBS=-lpanel -lpdcurses
OBJS = menurt.o main.o
main: $(OBJS)
$(CC) $(OBJS) -o main $(LIBS)
%.o: %.c *.h
$(CC) $(CFLAGS) $(INCLUDEDIR) -c -o $*.o $<
When i compiling the "main" program everything are OK.
When i run this program over rhgdb still everything OK.But when i
go in function,which is in menurt.c a see this warning.
"The selected breakpoint is invalid, probablythis file is not compiled
with debugging information or for this line is no code generated.."
I put breakpoint on this line "cprintf ("%i", cislo);"
What i was doing bad.
Thank You
- Raw text -