360c8608d49f802815c7d6316a59c66e4dd51019
[staging/xdg-launcher.git] / gdb / gdb-on-target.in
1 # gdb-remote.init file for IDE
2 # Object: allow to use standard gdb to remote debug a target
3 # Usage: remote-target-populate update script under ./build directory
4 # Author: Fulup Ar Foll (IoT.bzh)
5 # Reference: https://blog.flameeyes.eu/2010/02/remote-debugging-with-gdb-part-2-gdb/
6
7 # Start gdbserver on target and connect through SSH link
8 target remote | ssh @RSYNC_TARGET@ gdbserver - afb-daemon --port=@AFB_REMPORT@ --workdir=@RSYNC_PREFIX@/@PROJECT_NAME@ --roothttp=./htdocs --ldpath=./lib --verbose --token=@AFB_TOKEN@
9
10 # Replace run by continue (gdb use 'run' when gdbserver wants 'continue')
11 define run
12 continue
13 end