X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=gdb%2Fgdb-on-target.in;h=0478e90faeda83084ea66cfee8cec8ca06eb1603;hb=abd65a3d361d1aa73f2dcc2b20b91f740feb560d;hp=360c8608d49f802815c7d6316a59c66e4dd51019;hpb=0d28ff2c0f86d7c681a47638b0991f87e337c01b;p=staging%2Fxdg-launcher.git 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