[PATCH] D66188: Remove minimum toolchain soft-error
JF Bastien via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 13 21:30:05 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL368799: Remove minimum toolchain soft-error (authored by jfb, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D66188?vs=214980&id=215023#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66188/new/
https://reviews.llvm.org/D66188
Files:
llvm/trunk/cmake/modules/CheckCompilerVersion.cmake
llvm/trunk/docs/GettingStarted.rst
Index: llvm/trunk/cmake/modules/CheckCompilerVersion.cmake
===================================================================
--- llvm/trunk/cmake/modules/CheckCompilerVersion.cmake
+++ llvm/trunk/cmake/modules/CheckCompilerVersion.cmake
@@ -4,11 +4,11 @@
include(CheckCXXSourceCompiles)
-set(GCC_MIN 4.8)
+set(GCC_MIN 5.1)
set(GCC_SOFT_ERROR 5.1)
-set(CLANG_MIN 3.1)
+set(CLANG_MIN 3.5)
set(CLANG_SOFT_ERROR 3.5)
-set(APPLECLANG_MIN 3.1)
+set(APPLECLANG_MIN 6.0)
set(APPLECLANG_SOFT_ERROR 6.0)
# https://en.wikipedia.org/wiki/Microsoft_Visual_C#Internal_version_numbering
@@ -17,7 +17,7 @@
set(MSVC_SOFT_ERROR 19.1)
# Map the above GCC versions to dates: https://gcc.gnu.org/develop.html#timeline
-set(GCC_MIN_DATE 20130322)
+set(GCC_MIN_DATE 20150422)
set(GCC_SOFT_ERROR_DATE 20150422)
Index: llvm/trunk/docs/GettingStarted.rst
===================================================================
--- llvm/trunk/docs/GettingStarted.rst
+++ llvm/trunk/docs/GettingStarted.rst
@@ -235,15 +235,6 @@
* GCC 5.1
* Visual Studio 2017
-The below versions currently soft-error as we transition to the new compiler
-versions listed above. The LLVM codebase is currently known to compile correctly
-with the following compilers, though this will change in the near future:
-
-* Clang 3.1
-* Apple Clang 3.1
-* GCC 4.8
-* Visual Studio 2017
-
Anything older than these toolchains *may* work, but will require forcing the
build system with a special option and is not really a supported host platform.
Also note that older versions of these compilers have often crashed or
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66188.215023.patch
Type: text/x-patch
Size: 1589 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190814/f589f1ab/attachment.bin>
More information about the llvm-commits
mailing list