diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-02-17 00:35:31 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-02-21 13:57:33 -0500 |
commit | 216722984fec8aa76e2d97d7b8fcc2fb1608825b (patch) | |
tree | b6321ba1b75e3f1fd0f6eb84c18bfcf32e33f11a /sim/configure | |
parent | 144459531dd68a1287905079aaa131b777a8cc82 (diff) | |
download | gdb-216722984fec8aa76e2d97d7b8fcc2fb1608825b.zip gdb-216722984fec8aa76e2d97d7b8fcc2fb1608825b.tar.gz gdb-216722984fec8aa76e2d97d7b8fcc2fb1608825b.tar.bz2 |
sim: gdbinit: hoist setup to common code
This was left in subdirs because of the dynamic cgen usage. However,
we can move this breakpoint call to runtime and let gdb detect whether
the symbol exists.
Diffstat (limited to 'sim/configure')
-rwxr-xr-x | sim/configure | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/configure b/sim/configure index 019c2f4..02a3fa5 100755 --- a/sim/configure +++ b/sim/configure @@ -16287,7 +16287,7 @@ fi -ac_config_files="$ac_config_files arch-subdir.mk Makefile" +ac_config_files="$ac_config_files arch-subdir.mk Makefile .gdbinit:gdbinit.in" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure @@ -17540,6 +17540,7 @@ do "depdir-example-synacor") CONFIG_COMMANDS="$CONFIG_COMMANDS depdir-example-synacor" ;; "arch-subdir.mk") CONFIG_FILES="$CONFIG_FILES arch-subdir.mk" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + ".gdbinit") CONFIG_FILES="$CONFIG_FILES .gdbinit:gdbinit.in" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac |