summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorGaurav Khanna <gkhanna@microsoft.com>2016-10-16 08:37:28 -0700
committerGitHub <noreply@github.com>2016-10-16 08:37:28 -0700
commit09f38a8a4b8314a4e3e4c9fde2754d8152496684 (patch)
treeaa4007b6e7085d373def156c971e2ca822eeeea8 /Documentation
parent4677f2e231ae8c504c9626e2d03e927f27a44173 (diff)
parentaabd80225781517a8a0696a35772b160e9cc0732 (diff)
downloadcoreclr-09f38a8a4b8314a4e3e4c9fde2754d8152496684.tar.gz
coreclr-09f38a8a4b8314a4e3e4c9fde2754d8152496684.tar.bz2
coreclr-09f38a8a4b8314a4e3e4c9fde2754d8152496684.zip
Merge pull request #1965 from lasombra/patch-1
Update linux-instructions.md
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/building/linux-instructions.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/Documentation/building/linux-instructions.md b/Documentation/building/linux-instructions.md
index c948ecde20..ddd4274b83 100644
--- a/Documentation/building/linux-instructions.md
+++ b/Documentation/building/linux-instructions.md
@@ -47,6 +47,10 @@ ellismg@linux:~$ sudo apt-get install cmake llvm-3.5 clang-3.5 lldb-3.6 lldb-3.6
You now have all the required components.
+If you are using Fedora 23 or 24, 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`
+
Git Setup
---------
@@ -57,6 +61,10 @@ Set the maximum number of file-handles
To ensure that your system can allocate enough file-handles for the corefx build run `sysctl fs.file-max`. If it is less than 100000, add `fs.file-max = 100000` to `/etc/sysctl.conf`, and then run `sudo sysctl -p`.
+On Fedora 23 or 24:
+
+`$ sudo dnf install mono-devel`
+
Build the Runtime and Microsoft Core Library
=============================================