Document Linux libnuma dependency (dotnet/coreclr#11367)
authorTom Deseyn <tom.deseyn@gmail.com>
Thu, 4 May 2017 15:13:22 +0000 (17:13 +0200)
committerJan Vorlicek <janvorli@microsoft.com>
Thu, 4 May 2017 15:13:22 +0000 (08:13 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/e3b89a4abce3afb23ef92757cb77c7ade8d77862

docs/coreclr/building/linux-instructions.md

index bacbe6d..fecf2c9 100644 (file)
@@ -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
 ---------