diff --git a/BUILDING.md b/BUILDING.md index 1eae0087e0..89d69b8229 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -62,7 +62,7 @@ Depending on host platform, the selection of toolchains may vary. #### Unix * GCC 4.8.5 or newer -* Clang 3.4.1 or newer +* Clang 3.4.2 or newer #### Windows @@ -77,7 +77,7 @@ Depending on host platform, the selection of toolchains may vary. Prerequisites: * `gcc` and `g++` 4.8.5 or newer, or -* `clang` and `clang++` 3.4.1 or newer +* `clang` and `clang++` 3.4.2 or newer * Python 2.6 or 2.7 * GNU Make 3.81 or newer diff --git a/configure b/configure index 6e91cb3753..fccbec1d01 100755 --- a/configure +++ b/configure @@ -617,8 +617,8 @@ def check_compiler(o): ok, is_clang, clang_version, gcc_version = try_check_compiler(CXX, 'c++') if not ok: warn('failed to autodetect C++ compiler version (CXX=%s)' % CXX) - elif clang_version < '3.4.0' if is_clang else gcc_version < '4.8.0': - warn('C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=%s)' % CXX) + elif clang_version < '3.4.2' if is_clang else gcc_version < '4.8.0': + warn('C++ compiler too old, need g++ 4.8 or clang++ 3.4.2 (CXX=%s)' % CXX) ok, is_clang, clang_version, gcc_version = try_check_compiler(CC, 'c') if not ok: