summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorRama <ramarag@microsoft.com>2015-10-08 18:53:59 -0700
committerRama <ramarag@microsoft.com>2015-10-11 18:50:39 -0700
commitff328b606c4edad13e9a211a8d89288340952f4c (patch)
tree61db95b33101397875ec50713471aa341e25cac5 /Documentation
parent66b24ad114f991cd882387f1a3bb280c7cd6877f (diff)
downloadcoreclr-ff328b606c4edad13e9a211a8d89288340952f4c.tar.gz
coreclr-ff328b606c4edad13e9a211a8d89288340952f4c.tar.bz2
coreclr-ff328b606c4edad13e9a211a8d89288340952f4c.zip
This enables Lttng Logging for CoreClr,
The Tracepoint Providers are built as a separate shared object called libcoreclrtraceptprovider and it is available in the same directory as libcoreclr.so By Default the ability of Tracing will not be present To enable the ability of Tracing, the apps need to be run like: LD_PRELOAD=libcoreclrtraceptprovider.so ./corerun HelloWorld.exe For now to change Xplat Event Logging mechanism add any events to: <root>/src/vm/ClrEtwAll.man Then regenerate files by running : <root>/src/inc/genXplatLtnng.pl Conflicts: Documentation/building/linux-instructions.md
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/building/linux-instructions.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/building/linux-instructions.md b/Documentation/building/linux-instructions.md
index ebccafb504..73d1b925ab 100644
--- a/Documentation/building/linux-instructions.md
+++ b/Documentation/building/linux-instructions.md
@@ -26,6 +26,7 @@ Install the following packages for the toolchain:
- libunwind8-dev
- gettext
- libicu-dev
+- liblttng-ust-dev
In order to get lldb-3.6 on Ubuntu 14.04, we need to add an additional package source:
@@ -37,7 +38,7 @@ ellismg@linux:~$ sudo apt-get update
Then install the packages you need:
-`ellismg@linux:~$ sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6-dev libunwind8 libunwind8-dev gettext libicu-dev`
+`ellismg@linux:~$ sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6-dev libunwind8 libunwind8-dev gettext libicu-dev liblttng-ust-dev`
You now have all the required components.