[Lldb-commits] [lldb] r370303 - use https for llvm.org in the doc

Sylvestre Ledru via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 29 00:20:09 PDT 2019


Author: sylvestre
Date: Thu Aug 29 00:20:08 2019
New Revision: 370303

URL: http://llvm.org/viewvc/llvm-project?rev=370303&view=rev
Log:
use https for llvm.org in the doc

Modified:
    lldb/trunk/docs/index.rst
    lldb/trunk/docs/resources/build.rst
    lldb/trunk/docs/resources/source.rst

Modified: lldb/trunk/docs/index.rst
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/index.rst?rev=370303&r1=370302&r2=370303&view=diff
==============================================================================
--- lldb/trunk/docs/index.rst (original)
+++ lldb/trunk/docs/index.rst Thu Aug 29 00:20:08 2019
@@ -15,7 +15,7 @@ Objective-C and C++ on the desktop and i
 All of the code in the LLDB project is available under the
 `"Apache 2.0 License with LLVM exceptions"`_.
 
-.. _"Apache 2.0 License with LLVM exceptions": http://llvm.org/docs/DeveloperPolicy.html#new-llvm-project-license-framework
+.. _"Apache 2.0 License with LLVM exceptions": https://llvm.org/docs/DeveloperPolicy.html#new-llvm-project-license-framework
 
 Why a New Debugger?
 -------------------
@@ -159,6 +159,6 @@ interesting areas to contribute to lldb.
    :maxdepth: 1
    :caption: External Links
 
-   Source Code <http://llvm.org/viewvc/llvm-project/lldb/trunk/>
+   Source Code <https://llvm.org/viewvc/llvm-project/lldb/trunk/>
    Code Reviews <https://reviews.llvm.org>
    Bug Reports <https://bugs.llvm.org/>

Modified: lldb/trunk/docs/resources/build.rst
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/resources/build.rst?rev=370303&r1=370302&r2=370303&view=diff
==============================================================================
--- lldb/trunk/docs/resources/build.rst (original)
+++ lldb/trunk/docs/resources/build.rst Thu Aug 29 00:20:08 2019
@@ -12,7 +12,7 @@ In particular, it requires both Clang an
 this tight integration the Getting Started guides for both of these projects
 come as prerequisite reading:
 
-* `LLVM <http://llvm.org/docs/GettingStarted.html>`_
+* `LLVM <https://llvm.org/docs/GettingStarted.html>`_
 * `Clang <http://clang.llvm.org/get_started.html>`_
 
 The following requirements are shared on all platforms.
@@ -93,7 +93,7 @@ CMake is a cross-platform build-generato
 project, it generates the files needed by your build tool. The recommended
 build tool for LLVM is Ninja, but other generators like Xcode or Visual Studio
 may be used as well. Please also read `Building LLVM with CMake
-<http://llvm.org/docs/CMake.html>`_.
+<https://llvm.org/docs/CMake.html>`_.
 
 Regular in-tree builds
 **********************
@@ -278,7 +278,7 @@ CMake caches
 
 CMake caches allow to store common sets of configuration options in the form of
 CMake scripts and can be useful to reproduce builds for particular use-cases
-(see by analogy `usage in LLVM and Clang <http://llvm.org/docs/AdvancedBuilds.html>`_).
+(see by analogy `usage in LLVM and Clang <https://llvm.org/docs/AdvancedBuilds.html>`_).
 A cache is passed to CMake with the ``-C`` flag, following the absolute path to
 the file on disk. Subsequent ``-D`` options are still allowed. Please find the
 currently available caches in the `lldb/cmake/caches/
@@ -290,7 +290,7 @@ Common configurations on macOS
 
 Build, test and install a distribution of LLDB from the `monorepo
 <https://github.com/llvm/llvm-project>`_ (see also `Building a Distribution of
-LLVM <http://llvm.org/docs/BuildingADistribution.html>`_):
+LLVM <https://llvm.org/docs/BuildingADistribution.html>`_):
 
 ::
 

Modified: lldb/trunk/docs/resources/source.rst
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/docs/resources/source.rst?rev=370303&r1=370302&r2=370303&view=diff
==============================================================================
--- lldb/trunk/docs/resources/source.rst (original)
+++ lldb/trunk/docs/resources/source.rst Thu Aug 29 00:20:08 2019
@@ -2,7 +2,7 @@ Getting the Sources
 ===================
 
 Refer to the `LLVM Getting Started Guide
-<http://llvm.org/docs/GettingStarted.html#getting-started-with-llvm>`_
+<https://llvm.org/docs/GettingStarted.html#getting-started-with-llvm>`_
 for general instructions on how to check out source. Note that LLDB
 depends on having a working checkout of LLVM and Clang, so the first
 step is to download and build as described at the above URL. The same
@@ -17,7 +17,7 @@ Contributing to LLDB
 --------------------
 
 Please refer to the `LLVM Developer Policy
-<http://llvm.org/docs/DeveloperPolicy.html>`_ for information about
+<https://llvm.org/docs/DeveloperPolicy.html>`_ for information about
 authoring and uploading a patch. LLDB differs from the LLVM Developer
 Policy in the following respects.
 
@@ -40,9 +40,9 @@ rules of thumb:
 * Invalid input.  To deal with invalid input, such as malformed DWARF,
   missing object files, or otherwise inconsistent debug info, LLVM's
   error handling types such as `llvm::Expected<T>
-  <http://llvm.org/doxygen/classllvm_1_1Expected.html>`_ or
+  <https://llvm.org/doxygen/classllvm_1_1Expected.html>`_ or
   `llvm::Optional<T>
-  <http://llvm.org/doxygen/classllvm_1_1Optional.html>`_ should be
+  <https://llvm.org/doxygen/classllvm_1_1Optional.html>`_ should be
   used. Functions that may fail should return their result using these
   wrapper types instead of using a bool to indicate success. Returning
   a default value when an error occurred is also discouraged.
@@ -74,7 +74,7 @@ rules of thumb:
 * Fatal errors.  Aborting LLDB's process using
   `llvm::report_fatal_error()` or `abort()` should be avoided at all
   costs.  It's acceptable to use `llvm_unreachable()
-  <http://llvm.org/doxygen/Support_2ErrorHandling_8h.html>`_ for
+  <https://llvm.org/doxygen/Support_2ErrorHandling_8h.html>`_ for
   actually unreachable code such as the default in an otherwise
   exhaustive switch statement.
 




More information about the lldb-commits mailing list