summaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-08-22 14:03:18 -0400
committerKyleMiles <krm504@nyu.edu>2023-08-22 14:43:02 -0400
commit0d5fe9ec8963a26361b8bf1af17e029afc87f952 (patch)
treec77a8fde1aec20f972c7c4840b02e58328a673ea /docs/guide
parent5b73fb82d272aa32ff124a69e96579679e7d3580 (diff)
Change how DWARF Import initializes to enable unit tests
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/debuginfo.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guide/debuginfo.md b/docs/guide/debuginfo.md
index c9b7e6b2..d054ebb9 100644
--- a/docs/guide/debuginfo.md
+++ b/docs/guide/debuginfo.md
@@ -20,7 +20,7 @@ PDBs will make a best effort to find relevant debug info and apply it when you o
### DWARF Notes
-DWARF Import is currently disabled by default. If you'd like to import DWARF information from either ELF's or Mach-O's, you'll first need to enable it in [settings](settings.md). You can search for the term "DWARF Import Plugin" or use its settings identifier `corePlugins.dwarfImport`. You'll need to restart Binary Ninja to enable the plugin.
+DWARF Import is currently disabled by default. If you'd like to import DWARF information from either ELF's or Mach-O's, you'll first need to enable it in [settings](settings.md). You can search for the term "DWARF Import Plugin" or use its settings identifier `corePlugins.dwarfImport`. You have to set this globally before loading a binary, using load settings like `bv.load("...", options={"corePlugins.dwarfImport": True})` gets ignored.
DWARF information will then be imported by default if the file contains DWARF sections. Currently, Binary Ninja will not search local or remote locations to attempt to find the associated DWARF information for you. If you have separate DWARF info, you'll need to import that from an external file.