How does one set a breakpoint in a file that has a space in its filename or path?
It seems like this is not possible with GDB or am I missing something?
/tmp$ g++ -g debugee\ space.cpp /tmp$ gdb ./a.out GNU gdb (GDB) 7.4 Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-unknown-linux-gnu". For bug reporting instructions, please see: ... Reading symbols from /tmp/a.out...done. (gdb) break "/tmp/debugee space.cpp:4" Breakpoint 1 at 0x4007e3: file debugee space.cpp, line 4. (gdb) break "/tmp/debugee space.cpp":4 Note: breakpoint 1 also set at pc 0x4007e3. Breakpoint 2 at 0x4007e3: file debugee space.cpp, line 4. (gdb) run Starting program: /tmp/a.out Error in re-setting breakpoint 1: Function "/tmp/debugee space.cpp:4" not defined. Error in re-setting breakpoint 2: Function "/tmp/debugee space.cpp:4" not defined. Hello, world! [Inferior 1 (process 14188) exited normally] (gdb)