gdb: add setting to disable reading source code files
authorAndrew Burgess <andrew.burgess@embecosm.com>
Thu, 26 Apr 2018 15:21:34 +0000 (16:21 +0100)
committerAndrew Burgess <andrew.burgess@embecosm.com>
Mon, 27 Sep 2021 10:31:35 +0000 (11:31 +0100)
commitfde1a9a3ee8c95bb7bae6c764755bcbffdbb0308
tree7a4913567f8c8ede1e6f43d11fa1f2183fe386b1
parent5cf3b309489d1606ee0fb7e452f467d82fd1b765
gdb: add setting to disable reading source code files

In some situations it is possible that a user might not want GDB to
try and access source code files, for example, the source code might
be stored on a slow to access network file system.

It is almost certainly possible that using some combination of 'set
directories' and/or 'set substitute-path' a user can trick GDB into
being unable to find the source files, but this feels like a rather
crude way to solve the problem.

In this commit a new option is add that stops GDB from opening and
reading the source files.  A user can run with source code reading
disabled if this is required, then re-enable later if they decide
that they now want to view the source code.
gdb/NEWS
gdb/cli/cli-cmds.c
gdb/cli/cli-cmds.h
gdb/doc/gdb.texinfo
gdb/source.c
gdb/testsuite/gdb.base/source-open.c [new file with mode: 0644]
gdb/testsuite/gdb.base/source-open.exp [new file with mode: 0644]