Skip to content

Commit

Permalink
Fixing typo (dotnet#21081)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende authored and jkotas committed Nov 24, 2018
1 parent 5be7421 commit 84a62b1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Documentation/project-docs/linux-performance-tracing.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,22 +146,22 @@ what is going on in the NATIVE runtime dlls (typically libcoreclr.so), is intere
symbols for these when it converts its data, but ONLY if the symbols for these native DLLs are present (and are beside
the library they are for).
There is a global command called [dotnet symbols](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this. This tool was mostly desiged to download symbols
for debugging, but it works for perfollect as well. There are three steps to getting the symbols
There is a global command called [dotnet symbol](https://github.com/dotnet/symstore/blob/master/src/dotnet-symbol/README.md#symbol-downloader-dotnet-cli-extension) which does this. This tool was mostly desiged to download symbols
for debugging, but it works for perfcollect as well. There are three steps to getting the symbols
1. Install dotnet symbols
1. Install dotnet symbol
2. Download the symbols.
3. Copy the symbols to the correct place
To install dotnet symbols issue the command
To install dotnet symbol issue the command
```
dotnet tool install -g dotnet-symbol
```
With that installed download the symbols to a local directory. if your installed version of the .NET Core runtime is
2.1.0 the command to do this is
```
mkdir mySymbols
dotnet symbols --symbols --output mySymbols /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
dotnet symbol --symbols --output mySymbols /usr/share/dotnet/shared/Microsoft.NETCore.App/2.1.0/lib*.so
```
Now all the symbols for those native dlls are in mySymbols. You then have to copy them (as super user next to the
dlls that they are for.
Expand Down

0 comments on commit 84a62b1

Please sign in to comment.