X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=template.d%2Fgdb-on-target.ini.in;fp=template.d%2Fgdb-native-target.ini.in;h=20c8d30eba30cc77e3885878894f0c04a6b0520a;hb=42e5f14ffa00542385d0d60ee8b00494f590ab8c;hp=1ba6bdb4208dc32f768e24aa5a716134a80eb57e;hpb=b1c4a8fd777d6216a96c8174fc16c1d6e174e701;p=apps%2Fapp-templates.git diff --git a/template.d/gdb-native-target.ini.in b/template.d/gdb-on-target.ini.in similarity index 54% rename from template.d/gdb-native-target.ini.in rename to template.d/gdb-on-target.ini.in index 1ba6bdb..20c8d30 100644 --- a/template.d/gdb-native-target.ini.in +++ b/template.d/gdb-on-target.ini.in @@ -4,12 +4,19 @@ # 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 +# Warning: +# - on target start with $GDB ./target/gdb-cross-root@$TARGET.ini +# - Netbeans impose debug-command to point on a local instance of afb-daemon binary +# - --ldpath should be absolute as solib-search-path refuse to work as documented -# Fulup Hoops: --ldpath should be absolute as solib-search-path refuse to work as documented +# xds-gdb annotation to point where it should +# :XDS-ENV: XDS_PROJECT_ID=@XDS_PROJECT_ID@ +# :XDS-ENV: XDS_SDK_ID=@XDS_SDK_ID@ +# :XDS-ENV: XDS_SERVER_URL=@XDS_SERVER_URL@ # 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@ +target remote | ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null @RSYNC_TARGET@ gdbserver - \ + /usr/bin/afb-daemon --port=@AFB_REMPORT@ --workdir=@RSYNC_PREFIX@/@PROJECT_NAME@ --roothttp=htdocs --ldpaths=@RSYNC_PREFIX@/@PROJECT_NAME@/lib --verbose --token=@AFB_TOKEN@ # Disable auto answer no on questions and to set breakpoint set confirm off @@ -20,10 +27,7 @@ set auto-solib-add off # Define path for project libraries set solib-search-path ${PROJECT_PKG_BUILD_DIR} -# Replace run by continue (gdb use 'run' when gdbserver wants 'continue') -define run -continue -end +# Replace run by continue done by xds-gdb # Manually load project libraries when loaded by afb-daemon tbreak @GDB_INITIAL_BREAK@