diff options
author | Ayende Rahien <ayende@ayende.com> | 2018-11-24 17:18:36 +0200 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2018-11-24 07:18:36 -0800 |
commit | 84a62b1925adee9b8979b36f52834d0cca5d0469 (patch) | |
tree | fad0dec0cabbd6ead27219b9425dde001ebd480f /Documentation/project-docs | |
parent | 5be7421c75b2bea031ecac44a9c8e304eb4d1850 (diff) | |
download | coreclr-84a62b1925adee9b8979b36f52834d0cca5d0469.tar.gz coreclr-84a62b1925adee9b8979b36f52834d0cca5d0469.tar.bz2 coreclr-84a62b1925adee9b8979b36f52834d0cca5d0469.zip |
Fixing typo (#21081)
Diffstat (limited to 'Documentation/project-docs')
-rw-r--r-- | Documentation/project-docs/linux-performance-tracing.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Documentation/project-docs/linux-performance-tracing.md b/Documentation/project-docs/linux-performance-tracing.md index 2f97fb3b54..523ed901fb 100644 --- a/Documentation/project-docs/linux-performance-tracing.md +++ b/Documentation/project-docs/linux-performance-tracing.md @@ -146,14 +146,14 @@ 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 ``` @@ -161,7 +161,7 @@ With that installed download the symbols to a local directory. if your installe 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. |