Re: managing breakpoints in gdb

2007-03-07 Thread Brian Dessent
Domen Vrankar wrote: > I can't set breakpoints in gdb under cygwin with whole path to the source > file: > break "C:/cygwin/home/moon/uart/hello.c:69" > break "/cygdrive/c/cygwin/home/moon/uart/hello.c:69" > > The only thing similar to those two that works is: > break "/home/moon/uart/hello.c:69

RE: managing breakpoints in gdb

2007-03-07 Thread Dave Korn
On 07 March 2007 14:32, Domen Vrankar wrote: > The problem is that a graphical IDE that serves as gdb frontend and > works under windows (mo cygwin) sets breakpoints like this: break > "C:/cygwin/home/moon/uart/hello.c:69". Ah, that's your problem. The IDE is a buggy heap of garbage. You ne

Re: managing breakpoints in gdb

2007-03-07 Thread Domen Vrankar
2007/3/7, Larry Hall (Cygwin) <[EMAIL PROTECTED]>: Domen Vrankar wrote: > I can't set breakpoints in gdb under cygwin with whole path to the > source file: > break "C:/cygwin/home/moon/uart/hello.c:69" > break "/cygdrive/c/cygwin/home/moon/uart/hello.c:69" > > The only thing similar to those two

Re: managing breakpoints in gdb

2007-03-07 Thread Larry Hall (Cygwin)
Domen Vrankar wrote: I can't set breakpoints in gdb under cygwin with whole path to the source file: break "C:/cygwin/home/moon/uart/hello.c:69" break "/cygdrive/c/cygwin/home/moon/uart/hello.c:69" The only thing similar to those two that works is: break "/home/moon/uart/hello.c:69" Can this s

managing breakpoints in gdb

2007-03-07 Thread Domen Vrankar
I can't set breakpoints in gdb under cygwin with whole path to the source file: break "C:/cygwin/home/moon/uart/hello.c:69" break "/cygdrive/c/cygwin/home/moon/uart/hello.c:69" The only thing similar to those two that works is: break "/home/moon/uart/hello.c:69" Can this somehow be set to be abl