summaryrefslogtreecommitdiff
path: root/docs/guide
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2025-04-06 09:49:41 -0400
committerJordan Wiens <jordan@psifertex.com>2025-04-06 09:49:46 -0400
commitad4d6dba1947d7b9f66662b898e1626667636b5f (patch)
tree9ae47ef9913ce48b814465d4b0e078240f0823f4 /docs/guide
parent3004784707280840879507327117021401615306 (diff)
fix moved URLs in documentation
Diffstat (limited to 'docs/guide')
-rw-r--r--docs/guide/types/debuginfo.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/guide/types/debuginfo.md b/docs/guide/types/debuginfo.md
index 6f6ed085..0422fa11 100644
--- a/docs/guide/types/debuginfo.md
+++ b/docs/guide/types/debuginfo.md
@@ -6,7 +6,7 @@ Currently debug info plugins are limited to types, function signatures, and data
## Supported Debug Info
-We currently support [PDBs](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/pdb-ng) and [DWARF](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_import) (which are both open source), though you can also [register your own debug info parser through the API](https://api.binary.ninja/binaryninja.debuginfo-module.html#binaryninja.debuginfo.DebugInfoParser).
+We currently support [PDBs](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/pdb-ng) and [DWARF](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_import) (which are both open source), though you can also [register your own debug info parser through the API](https://api.binary.ninja/binaryninja.debuginfo-module.html#binaryninja.debuginfo.DebugInfoParser).
For PDBs, Binary Ninja will automatically try to source from specified local folders and Microsoft's symbol server ([see the PDB settings for more information](../settings.md#all-settings)).
@@ -40,7 +40,7 @@ Components are supported by the API, but not in the parser. The [same issue](htt
#### DWARF Export Limitations
-Our [DWARF Export plugin](https://github.com/Vector35/binaryninja-api/tree/dev/rust/examples/dwarf/dwarf_export) is also open source and uses a different system from our debug information import plugins. It also does not support function-local variable names or types. The export plugin currently will export the global variables, function prototypes, and all the types in your binary view except for ones that are FunctionTypeClass or VarArgsTypeClass.
+Our [DWARF Export plugin](https://github.com/Vector35/binaryninja-api/tree/dev/plugins/dwarf/dwarf_export) is also open source and uses a different system from our debug information import plugins. It also does not support function-local variable names or types. The export plugin currently will export the global variables, function prototypes, and all the types in your binary view except for ones that are FunctionTypeClass or VarArgsTypeClass.
#### Special Note for `.dSYM` Files