summaryrefslogtreecommitdiffstats
path: root/txr.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-06 22:10:18 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-06 22:10:18 -0700
commitc9a8bbd7f5308b9d165b0d21ff9b49bcd4fc070e (patch)
tree8faf588326a83c0d99b050a847e95b9a80dcd8a8 /txr.c
parentf93b24ace00a1800dd9540fa5268ce1c3bb6e61d (diff)
downloadtxr-c9a8bbd7f5308b9d165b0d21ff9b49bcd4fc070e.tar.gz
txr-c9a8bbd7f5308b9d165b0d21ff9b49bcd4fc070e.tar.bz2
txr-c9a8bbd7f5308b9d165b0d21ff9b49bcd4fc070e.zip
Suppress debug stepping into auto-loaded library code.
* debug.c (debug_set_state, debug_restore_state): New functions. * debug.h (debug_state_t): New type. (debug_set_state, debug_restore_state): Declared, and defined as dummy macros in non-debug-support build. * lisplib.c (opt_dbg_autoload): New global variable. (lisplib_try_load): Disable or enable debugging around library loading based on opt_dbg_autoload option. * lisplib.h (opt_dbg_autoload): Declared. * txr.c (help): List --debug-autoload option. (no_dbg_support): New static function to avoid repeated code. (txr_main): Add debugger option. Change duplicate no debug support error messages into calls to no_dbg_support. * txr.1: Document --debug-autoload
Diffstat (limited to 'txr.c')
-rw-r--r--txr.c28
1 files changed, 22 insertions, 6 deletions
diff --git a/txr.c b/txr.c
index e784c224..b9a65f80 100644
--- a/txr.c
+++ b/txr.c
@@ -52,6 +52,7 @@
#include "eval.h"
#include "regex.h"
#include "arith.h"
+#include "lisplib.h"
#include "txr.h"
const wchli_t *version = wli(TXR_VER);
@@ -144,6 +145,7 @@ static void help(void)
"--compat=N Synonym for -C N\n"
"--gc-delta=N Invoke garbage collection when malloc activity\n"
" increments by N megabytes since last collection.\n"
+"--debug-autoload Allow debugger to step through library auto-loading.\n"
"\n"
"Options that take no argument can be combined. The -q and -v options\n"
"are mutually exclusive; the right-most one dominates.\n"
@@ -366,6 +368,15 @@ static int gc_delta(val optval)
return 1;
}
+#ifndef CONFIG_DEBUG_SUPPORT
+static void no_dbg_support(val arg)
+{
+ format(std_error,
+ lit("~a: option ~a requires debug support compiled in\n"),
+ prog_string, arg, nao);
+}
+#endif
+
int txr_main(int argc, char **argv)
{
val specstring = nil;
@@ -500,9 +511,16 @@ int txr_main(int argc, char **argv)
opt_debugger = 1;
continue;
#else
- format(std_error,
- lit("~a: option ~a requires debug support compiled in\n"),
- prog_string, arg, nao);
+ no_dbg_support(arg);
+ return EXIT_FAILURE;
+#endif
+ } else if (equal(opt, lit("debug-autoload"))) {
+#if CONFIG_DEBUG_SUPPORT
+ opt_debugger = 1;
+ opt_dbg_autoload = 1;
+ continue;
+#else
+ no_dbg_support(opt);
return EXIT_FAILURE;
#endif
} else if (equal(opt, lit("noninteractive"))) {
@@ -591,9 +609,7 @@ int txr_main(int argc, char **argv)
#if CONFIG_DEBUG_SUPPORT
opt_debugger = 1;
#else
- format(std_error,
- lit("~a: option ~a requires debug support compiled in\n"),
- prog_string, opch, nao);
+ no_dbg_support(opch);
return EXIT_FAILURE;
#endif
break;