summaryrefslogtreecommitdiff
path: root/Documentation/building
diff options
context:
space:
mode:
authorTom Deseyn <tom.deseyn@gmail.com>2017-05-04 17:13:22 +0200
committerJan Vorlicek <janvorli@microsoft.com>2017-05-04 08:13:22 -0700
commite3b89a4abce3afb23ef92757cb77c7ade8d77862 (patch)
tree375683377d71b34c6306439f1860743dc2bd095f /Documentation/building
parent4eb6cb798ef238d8a09e8b85d94da281ba95acf7 (diff)
downloadcoreclr-e3b89a4abce3afb23ef92757cb77c7ade8d77862.tar.gz
coreclr-e3b89a4abce3afb23ef92757cb77c7ade8d77862.tar.bz2
coreclr-e3b89a4abce3afb23ef92757cb77c7ade8d77862.zip
Document Linux libnuma dependency (#11367)
Diffstat (limited to 'Documentation/building')
-rw-r--r--Documentation/building/linux-instructions.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/building/linux-instructions.md b/Documentation/building/linux-instructions.md
index bacbe6d2f0..fecf2c9b60 100644
--- a/Documentation/building/linux-instructions.md
+++ b/Documentation/building/linux-instructions.md
@@ -30,6 +30,7 @@ Install the following packages for the toolchain:
- libcurl4-openssl-dev
- libssl-dev
- uuid-dev
+- libnuma-dev (optional, enables numa support)
In order to get lldb-3.6 on Ubuntu 14.04, we need to add an additional package source:
@@ -50,14 +51,14 @@ For other version of Debian/Ubuntu, please visit http://apt.llvm.org/.
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 liblttng-ust-dev libcurl4-openssl-dev libssl-dev uuid-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 libcurl4-openssl-dev libssl-dev uuid-dev libnuma-dev
```
You now have all the required components.
If you are using Fedora, then you will need to install the following packages:
-`$ sudo dnf install llvm cmake clang lldb-devel libunwind-devel lttng-ust-devel libuuid-devel libicu-devel`
+`$ sudo dnf install llvm cmake clang lldb-devel libunwind-devel lttng-ust-devel libuuid-devel libicu-devel numactl-devel`
Git Setup
---------