Author Topic: How to pass .gdb file to SlickEdit  (Read 2375 times)

bremenpl

  • Community Member
  • Posts: 90
  • Hero Points: 0
  • Electrical Engineer
How to pass .gdb file to SlickEdit
« on: July 17, 2014, 04:03:24 PM »
Hello there,
I am using SlickEdit 2013 (v18.0.1.2 64-bit) on Linux Mint 16. I am using arm-none-linux-gnueabi-gdb for debbuging an c++ application running on a Raspberry pi. One thing i cant do is pass a .gdb file to my application- When i start debbuging the debugger doesnt automatically hit the 1st breakpoint i have to click run or Continue untill line cursor is one. So i wrote a .gdb file config.gdb where i entered those commands:

Code: [Select]
break main
continue

In Gnu C options... -> Code generation i checked Include GDB extensions -ggdb.
In attach to remote proces and then under the gdb configuration i am using i added to arguments:
Code: [Select]
/home/lukasz/Pulpit/slickedit_work/bcm_test/config.gdb
But this doesnt seem to work. I would aprichiate any help.