diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-06-15 07:57:00 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2017-06-15 07:57:00 +0000 |
commit | 8d9b7f22c821e149a09824df50a6775fac43a977 (patch) | |
tree | fcdfe8d60457e66c5ab4dd75b3afe04b2c9fc576 /gdb/gdb-on-target.in | |
parent | 5a83e479e50eff90f1d98bd74a9f933a6340e3f6 (diff) | |
parent | b0a2632e28f03dd664b959f7f4b038741a62678b (diff) |
Merge changes I81a6d9f6,I67698bbb
* changes:
Fix: remove old bug about overwriten variables.
Fix gdb debugging and add widget install on target
Diffstat (limited to 'gdb/gdb-on-target.in')
-rw-r--r-- | gdb/gdb-on-target.in | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/gdb/gdb-on-target.in b/gdb/gdb-on-target.in index 360c860..0478e90 100644 --- a/gdb/gdb-on-target.in +++ b/gdb/gdb-on-target.in @@ -5,9 +5,25 @@ # Reference: https://blog.flameeyes.eu/2010/02/remote-debugging-with-gdb-part-2-gdb/ # Start gdbserver on target and connect through SSH link -target remote | ssh @RSYNC_TARGET@ gdbserver - afb-daemon --port=@AFB_REMPORT@ --workdir=@RSYNC_PREFIX@/@PROJECT_NAME@ --roothttp=./htdocs --ldpath=./lib --verbose --token=@AFB_TOKEN@ +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@ + +# Disable auto load of libraries to improved perf +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} # Replace run by continue (gdb use 'run' when gdbserver wants 'continue') define run continue +end + +# Manually load project libraries when loaded by afb-daemon +break execute_command +commands +sharedlibrary $ENV{PROJECT_DIR}/build/@PKGOUT_DIR@ +continue end
\ No newline at end of file |