This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit 76db3c893939395fd729fb13d1ef9a366fa3b737 Author: Gao Jiawei <gaojia...@xiaomi.com> AuthorDate: Tue Jul 9 11:39:15 2024 +0800 enable stack trace printing on excpetion Signed-off-by: Gao Jiawei <gaojia...@xiaomi.com> --- tools/gdb/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/gdb/__init__.py b/tools/gdb/__init__.py index 3797336953..02819a3e9b 100644 --- a/tools/gdb/__init__.py +++ b/tools/gdb/__init__.py @@ -36,6 +36,8 @@ py_files.remove(os.path.abspath(__file__)) gdb.execute("set pagination off") gdb.write("set pagination off\n") +gdb.execute("set python print-stack full") +gdb.write("set python print-stack full\n") for py_file in py_files: gdb.execute("source %s" % py_file) gdb.write("source %s\n" % py_file)