diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2017-07-31 18:36:42 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-10-15 18:22:47 +0200 |
commit | b5bc6ff322112503b038f564ee44ccfce8f1fd05 (patch) | |
tree | 5ab830e69684e2cb8118eec9fb0021df6eed2da8 /gdb | |
parent | 3f449fe50c289fb339f758dfcdafcd054f7f7a3d (diff) |
Fixed target-populate dependencies and update native-remote debug
Change-Id: Ia041caa86dd57af48ae6ee53f26fb0be86f95e88
Signed-off-by: Fulup Ar Foll <fulup@iot.bzh>
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/gdb-native-target.ini.in (renamed from gdb/gdb-on-target.ini.in) | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/gdb/gdb-on-target.ini.in b/gdb/gdb-native-target.ini.in index 52a33e2..1ba6bdb 100644 --- a/gdb/gdb-on-target.ini.in +++ b/gdb/gdb-native-target.ini.in @@ -3,9 +3,13 @@ # Usage: remote-target-populate update script under ./build directory # Author: Fulup Ar Foll (IoT.bzh) # Reference: https://blog.flameeyes.eu/2010/02/remote-debugging-with-gdb-part-2-gdb/ +# +# Warning: In remote native mode netbeans impose debug-command to point on a local instance of afb-daemon binary -# Start gdbserver on target and connect through SSH link -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 --ldpaths=./lib --verbose --token=@AFB_TOKEN@ +# Fulup Hoops: --ldpath should be absolute as solib-search-path refuse to work as documented + +# Start gdbserver on target and connect through SSH link WARNING: +target remote | ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null @RSYNC_TARGET@ gdbserver - afb-daemon --port=@AFB_REMPORT@ --workdir=$HOME/@RSYNC_PREFIX@/@PROJECT_NAME@ --roothttp=htdocs --ldpaths=$HOME/@RSYNC_PREFIX@/@PROJECT_NAME@/lib --verbose --token=@AFB_TOKEN@ # Disable auto answer no on questions and to set breakpoint set confirm off @@ -14,10 +18,7 @@ set confirm off set auto-solib-add off # Define path for project libraries -set solib-search-path $ENV{PROJECT_DIR}/build/@PKGOUT_DIR@/lib - -# Path substitution for source file names -set substitute-path @CMAKE_CURRENT_SOURCE_DIR@ $ENV{PROJECT_DIR} +set solib-search-path ${PROJECT_PKG_BUILD_DIR} # Replace run by continue (gdb use 'run' when gdbserver wants 'continue') define run @@ -25,8 +26,10 @@ continue end # Manually load project libraries when loaded by afb-daemon -break execute_command +tbreak @GDB_INITIAL_BREAK@ commands -sharedlibrary @BINDINGS_REGEX@ +sharedlibrary @RSYNC_PREFIX@/@PROJECT_NAME@ continue end + + |