diff options
author | JF Bastien <jfbastien@apple.com> | 2019-08-14 04:30:51 +0000 |
---|---|---|
committer | JF Bastien <jfbastien@apple.com> | 2019-08-14 04:30:51 +0000 |
commit | 20644a9540c85f1d6af601fd7ca56f758831601e (patch) | |
tree | d47cad483ffc1a5c1de2f879f2e5fe6cb57a910f /llvm/docs | |
parent | a318c5507348bfc4788310747b7498848de24c42 (diff) | |
download | bcm5719-llvm-20644a9540c85f1d6af601fd7ca56f758831601e.tar.gz bcm5719-llvm-20644a9540c85f1d6af601fd7ca56f758831601e.zip |
Remove minimum toolchain soft-error
Summary:
Back in January I changed the minimum toolchain version required to build clang
and LLVM: D57264. Since then we've release LLVM 8, following
[our process](http://llvm.org/docs/DeveloperPolicy.html#toolchain)
it's therefore now a good time to remove the soft-error and officially deprecate
older toolchains. I tried this out last Tursday night to see if any bots
complained, and I saw no complaints. I also manually audited bots and didn't see
any bot that should break, but their toolchain information is unreliable and
some bots are offline.
Once this patch stick we'll move to C++14 as we've
[already agreed](http://lists.llvm.org/pipermail/llvm-dev/2019-January/129452.html).
Subscribers: mgorny, jkorous, dexonsmith, llvm-commits, EricWF, thakis, chandlerc
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D66188
llvm-svn: 368799
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/GettingStarted.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst index 9825e848a51..a874b49b1fd 100644 --- a/llvm/docs/GettingStarted.rst +++ b/llvm/docs/GettingStarted.rst @@ -235,15 +235,6 @@ popular host toolchains for specific minimum versions in our build systems: * 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 |