[llvm-branch-commits] [llvm-branch] r354320 - docs: Remove in-progress warning

Hans Wennborg via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Tue Feb 19 05:14:28 PST 2019


Author: hans
Date: Tue Feb 19 05:14:28 2019
New Revision: 354320

URL: http://llvm.org/viewvc/llvm-project?rev=354320&view=rev
Log:
docs: Remove in-progress warning

Modified:
    llvm/branches/release_80/docs/ReleaseNotes.rst
    llvm/branches/release_80/docs/index.rst

Modified: llvm/branches/release_80/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_80/docs/ReleaseNotes.rst?rev=354320&r1=354319&r2=354320&view=diff
==============================================================================
--- llvm/branches/release_80/docs/ReleaseNotes.rst (original)
+++ llvm/branches/release_80/docs/ReleaseNotes.rst Tue Feb 19 05:14:28 2019
@@ -5,12 +5,6 @@ LLVM 8.0.0 Release Notes
 .. contents::
     :local:
 
-.. warning::
-   These are in-progress notes for the upcoming LLVM 8 release.
-   Release notes for previous releases can be found on
-   `the Download Page <https://releases.llvm.org/download.html>`_.
-
-
 Introduction
 ============
 
@@ -31,6 +25,25 @@ LLVM web page, this document applies to
 one.  To see the release notes for a specific release, please see the `releases
 page <https://llvm.org/releases/>`_.
 
+Minimum Required Compiler Version
+=================================
+As `discussed on the mailing list
+<https://lists.llvm.org/pipermail/llvm-dev/2019-January/129452.html>`_,
+building LLVM will soon require more recent toolchains as follows:
+
+============= ====
+Clang         3.5
+Apple Clang   6.0
+GCC           5.1
+Visual Studio 2017
+============= ====
+
+A new CMake check when configuring LLVM provides a soft-error if your
+toolchain will become unsupported soon. You can opt out of the soft-error by
+setting the ``LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN`` CMake variable to
+``ON``.
+
+
 Non-comprehensive list of changes in this release
 =================================================
 .. NOTE
@@ -40,27 +53,11 @@ Non-comprehensive list of changes in thi
    functionality, or simply have a lot to talk about), see the `NOTE` below
    for adding a new subsection.
 
-* As `discussed on the mailing list
-  <https://lists.llvm.org/pipermail/llvm-dev/2019-January/129452.html>`_,
-  building LLVM will soon require more recent toolchains as follows:
-
-  ============= ====
-  Clang         3.5
-  Apple Clang   6.0
-  GCC           5.1
-  Visual Studio 2017
-  ============= ====
-
-  A new CMake check when configuring LLVM provides a soft-error if your
-  toolchain will become unsupported soon. You can opt out of the soft-error by
-  setting the ``LLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN`` CMake variable to
-  ``ON``.
-
 * The **llvm-cov** tool can now export lcov trace files using the
   `-format=lcov` option of the `export` command.
 
-* The add_llvm_loadable_module CMake macro has been removed.  The
-  add_llvm_library macro with the MODULE argument now provides the same
+* The ``add_llvm_loadable_module`` CMake macro has been removed.  The
+  ``add_llvm_library`` macro with the ``MODULE`` argument now provides the same
   functionality.  See `Writing an LLVM Pass
   <WritingAnLLVMPass.html#setting-up-the-build-environment>`_.
 

Modified: llvm/branches/release_80/docs/index.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_80/docs/index.rst?rev=354320&r1=354319&r2=354320&view=diff
==============================================================================
--- llvm/branches/release_80/docs/index.rst (original)
+++ llvm/branches/release_80/docs/index.rst Tue Feb 19 05:14:28 2019
@@ -1,11 +1,6 @@
 Overview
 ========
 
-.. warning::
-
-   If you are using a released version of LLVM, see `the download page
-   <http://llvm.org/releases/>`_ to find your documentation.
-
 The LLVM compiler infrastructure supports a wide range of projects, from
 industrial strength compilers to specialized JIT applications to small
 research projects.




More information about the llvm-branch-commits mailing list