From e1a4458a10ded40dc1ff0088411df9d7e0b02a4f Mon Sep 17 00:00:00 2001
From: alphapapa <adam@alphapapa.net>
Date: Wed, 6 Dec 2017 10:29:09 -0600
Subject: [PATCH] docs: Update required Clang version and Ubuntu 14.04
 instructions (#150)

[ci skip]
---
 README.md | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 3b01f7b44..591ac8e79 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ sudo emerge -a nheko
 - CMake 3.1 or greater.
 - [LMDB](https://symas.com/lightning-memory-mapped-database/).
 - A compiler that supports C++11.
-    - Clang 3.3 (or greater).
+    - Clang 3.6 (or greater).
     - GCC 4.9.4 (or greater).
 
 ##### Arch Linux
@@ -70,6 +70,15 @@ sudo apt-get update
 sudo apt-get install -y qt59base qt59tools qt59multimedia cmake liblmdb-dev
 ```
 
+To build on Ubuntu 14.04 Trusty out-of-the-box requires using Clang 3.6 instead of GCC:
+
+```bash
+sudo apt-get install clang-3.6
+export CC=clang-3.6 CXX=clang++-3.6
+```
+
+On Ubuntu 14.04 Trusty, it's possible to use GCC 4.9.4+, but it is not recommended, because it requires installing GCC packages from third-party PPAs.  Later versions of Ubuntu that come with GCC 4.9.4+ should work with GCC out-of-the-box.
+
 ##### OSX (Xcode 8 or later)
 
 ```bash
-- 
GitLab