summaryrefslogtreecommitdiff
path: root/docs/users_guide/codegens.rst
diff options
context:
space:
mode:
authorKrzysztof Gogolewski <krzysztof.gogolewski@tweag.io>2021-08-29 23:24:58 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-09-08 03:00:57 -0400
commit330e6e9c7a88d2be6d3f78eff44a9a6fcf9733a2 (patch)
tree149dc88608b6b771e79673d3f115d075f8763baf /docs/users_guide/codegens.rst
parentdcc1599f74d8115b3bd1bd87648866d89070a7e9 (diff)
downloadhaskell-330e6e9c7a88d2be6d3f78eff44a9a6fcf9733a2.tar.gz
Documentation: use https links
Diffstat (limited to 'docs/users_guide/codegens.rst')
-rw-r--r--docs/users_guide/codegens.rst10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/users_guide/codegens.rst b/docs/users_guide/codegens.rst
index 1cad4b7659..441d4900d6 100644
--- a/docs/users_guide/codegens.rst
+++ b/docs/users_guide/codegens.rst
@@ -34,7 +34,7 @@ LLVM Code Generator (``-fllvm``)
.. index::
single: LLVM code generator
-This is an alternative backend that uses the `LLVM <http://llvm.org>`__
+This is an alternative backend that uses the `LLVM <https://llvm.org>`__
compiler to produce executable code. It generally produces code with
performance as good as the native code generator but for some cases can
produce much faster code. This is especially true for numeric, array
@@ -46,7 +46,7 @@ You must install and have LLVM available on your ``PATH`` for the LLVM code
generator to work. Specifically GHC needs to be able to call the ``opt``
and ``llc`` tools. Secondly, if you are running Mac OS X with LLVM 3.0
or greater then you also need the `Clang C
-compiler <http://clang.llvm.org>`__ compiler available on your ``PATH``.
+compiler <https://clang.llvm.org>`__ compiler available on your ``PATH``.
.. note::
@@ -60,12 +60,12 @@ To install LLVM and Clang:
- *Mac OS X*: Clang is included by default on recent OS X machines when
Xcode is installed (from 10.6 and later). LLVM is not included.
In order to use the LLVM based code generator, you should install the
- `Homebrew <http://mxcl.github.com/homebrew/>`__ package manager for
+ `Homebrew <https://github.com/Homebrew/brew>`__ package manager for
OS X. Alternatively you can download binaries for LLVM and Clang from
- `here <http://llvm.org/releases/download.html>`__.
+ `here <https://llvm.org/releases/download.html>`__.
- *Windows*: You should download binaries for LLVM and clang from
- `here <http://llvm.org/releases/download.html>`__.
+ `here <https://llvm.org/releases/download.html>`__.
.. _c-code-gen: