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
committerAndreas Klebinger <klebinger.andreas@gmx.at>2021-09-07 16:38:26 +0000
commit46f27070e52c9069a94d5484da9b89bd2fedcaea (patch)
tree640ff2864f0077c7210d91f432a8050fd2575284 /docs/users_guide/codegens.rst
parentc7cc23b652c12f2cefabfc209732c8f70b69cc47 (diff)
downloadhaskell-wip/doc-fixes.tar.gz
Documentation: use https linkswip/doc-fixes
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: