Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Symbol servers need to be space separated now #371

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/analysis/symbols.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ pdb.useragent = Microsoft-Symbol-Server/6.11.0001.402

Using the variable `pdb.server` you can change the address where radare2 will try to
download the PDB file by the GUID stored in the executable header.
You can make use of multiple symbol servers by separating each URL with a semi-colon:
You can make use of multiple symbol servers by separating each URL with a space:
```
e pdb.server = https://msdl.microsoft.com/download/symbols;https://symbols.mozilla.org/
e pdb.server = https://msdl.microsoft.com/download/symbols https://symbols.mozilla.org
```
On Windows, you can also use local network share paths (UNC paths) as symbol servers.

Expand Down