Fix: shared library files not found by gdb
[staging/xdg-launcher.git] / gdb / gdb-on-target.ini.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 -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null @RSYNC_TARGET@ gdbserver - afb-daemon --port=@AFB_REMPORT@ --workdir=@RSYNC_PREFIX@/@PROJECT_NAME@ --roothttp=./htdocs --ldpath=./lib --verbose --token=@AFB_TOKEN@
9
10 # Disable auto load of libraries to improved perf
11 set auto-solib-add off
12
13 # Define path for project libraries
14 set solib-search-path $ENV{PROJECT_DIR}/build/@PKGOUT_DIR@/lib
15
16 # Path substitution for source file names
17 set substitute-path @CMAKE_CURRENT_SOURCE_DIR@ $ENV{PROJECT_DIR}
18
19 # Replace run by continue (gdb use 'run' when gdbserver wants 'continue')
20 define run
21 continue
22 end
23
24 # Manually load project libraries when loaded by afb-daemon
25 break execute_command
26 commands
27 sharedlibrary @BINDINGS_REGEX@
28 continue
29 end