diff options
author | Loïc Collignon <loic.collignon@iot.bzh> | 2017-10-24 14:33:33 +0200 |
---|---|---|
committer | Loïc Collignon <loic.collignon@iot.bzh> | 2017-10-24 14:33:33 +0200 |
commit | a37a642f6e16be23e5b0a90835f7cfb84d5eb209 (patch) | |
tree | f86162140f6be33b2d005549ba2d9b3e1c97170c /ll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in | |
parent | 97325dd67f3b7858bd093fc161d0a56e7c7bc9bd (diff) |
fix use of make event in preinit
Change-Id: I3a2eb2805bdf618e3c8349776b02bbe1b7475ccc
Signed-off-by: Loïc Collignon <loic.collignon@iot.bzh>
Diffstat (limited to 'll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in')
-rw-r--r-- | ll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/ll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in b/ll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in deleted file mode 100644 index 20c8d30..0000000 --- a/ll-database-binding/conf.d/app-templates/template.d/gdb-on-target.ini.in +++ /dev/null @@ -1,39 +0,0 @@ -# gdb-remote.init file for IDE -# Object: allow to use standard gdb to remote debug a target -# 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: -# - 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 - -# 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 - \ - /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 - -# Disable auto load of libraries to improved perf -set auto-solib-add off - -# Define path for project libraries -set solib-search-path ${PROJECT_PKG_BUILD_DIR} - -# Replace run by continue done by xds-gdb - -# Manually load project libraries when loaded by afb-daemon -tbreak @GDB_INITIAL_BREAK@ -commands -sharedlibrary @RSYNC_PREFIX@/@PROJECT_NAME@ -continue -end - - |