aboutsummaryrefslogtreecommitdiffhomepage
path: root/debug
diff options
context:
space:
mode:
authorjohannst <johannst@users.noreply.github.com>2024-11-09 10:42:31 +0000
committerjohannst <johannst@users.noreply.github.com>2024-11-09 10:42:31 +0000
commit07dda6914ac1354b53da50d1b43cf439102c1bcc (patch)
tree716ce644a38715e36b6fa22e2b884839e06ef1c0 /debug
parent76d0ea3113933da30c1251e8c8b7016a677dfa42 (diff)
downloadnotes-gh-pages.tar.gz
notes-gh-pages.zip
deploy: 3d599bcbf6771def1076c3e9561bc748956dfc94gh-pages
Diffstat (limited to 'debug')
-rw-r--r--debug/gdb.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/debug/gdb.html b/debug/gdb.html
index b73a03d..bac580a 100644
--- a/debug/gdb.html
+++ b/debug/gdb.html
@@ -386,11 +386,18 @@ thread name &lt;name&gt;
on: Truncate log file on each run.
off: Append to logfile (default).
+ set trace-commands &lt;on | off&gt;
+ on: Echo comamands executed (good with logging).
+ off: Do not echo commands executedt (default).
+
set history filename &lt;fname&gt;
Change file where to save and restore command history to and from.
set history &lt;on | off&gt;
Enable or disable saving of command history.
+
+ set exec-wrapper &lt;cli&gt;
+ Set an exec wrapper which sets up the env and execs the debugee.
</code></pre>
<blockquote>
<p>Logging options should be configured before logging is turned on.</p>
@@ -601,6 +608,34 @@ executed. To workaround that bug one can create a wrapper function which calls
handler
end
</code></pre>
+<h2 id="launch-debuggee-through-an-exec-wrapper"><a class="header" href="#launch-debuggee-through-an-exec-wrapper">Launch debuggee through an exec wrapper</a></h2>
+<pre><code class="language-markdown">&gt; cat test.c
+#include &lt;stdio.h&gt;
+#include &lt;stdlib.h&gt;
+
+int main() {
+ const char* env = getenv("MOOSE");
+ printf("$MOOSE=%s\n", env ? env : "&lt;nullptr&gt;");
+}
+
+&gt; cat test.sh
+#!/bin/bash
+
+echo "running test.sh wapper"
+export MOOSE=moose
+exec ./test
+
+&gt; gcc -g -o test test.c
+
+&gt; gdb test
+(gdb) r
+$MOOSE=&lt;nullptr&gt;
+
+(gdb) set exec-wrapper bash test.sh
+(gdb) r
+running test.sh wapper
+$MOOSE=moose
+</code></pre>
</main>