diff options
author | Zubin Duggal <zubin.duggal@gmail.com> | 2022-05-17 16:16:09 +0530 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-20 10:44:35 -0400 |
commit | a36d12ee19afa949da27ab73f082428830f3dba3 (patch) | |
tree | 9b88d68247d535cde929e3a25e4e8a6a4b804241 | |
parent | c1e24e610ae572b77bc1507674431a84563af759 (diff) | |
download | haskell-a36d12ee19afa949da27ab73f082428830f3dba3.tar.gz |
docs: Fix LlvmVersion in manpage (#21280)
-rw-r--r-- | docs/users_guide/codegens.rst | 4 | ||||
-rw-r--r-- | docs/users_guide/conf.py | 5 | ||||
-rw-r--r-- | docs/users_guide/ghc_config.py.in | 3 |
3 files changed, 7 insertions, 5 deletions
diff --git a/docs/users_guide/codegens.rst b/docs/users_guide/codegens.rst index 441d4900d6..e9b696fe0e 100644 --- a/docs/users_guide/codegens.rst +++ b/docs/users_guide/codegens.rst @@ -50,8 +50,8 @@ compiler <https://clang.llvm.org>`__ compiler available on your ``PATH``. .. note:: - Note that this GHC release expects an LLVM version in the |llvm-version| - release series. + Note that this GHC release expects an LLVM version in the |llvm-version-min| + up to |llvm-version-max| (not inclusive) release series. To install LLVM and Clang: diff --git a/docs/users_guide/conf.py b/docs/users_guide/conf.py index 04631fc363..a7ad65ae83 100644 --- a/docs/users_guide/conf.py +++ b/docs/users_guide/conf.py @@ -41,8 +41,9 @@ nitpick_ignore = [ ] rst_prolog = """ -.. |llvm-version| replace:: {llvm_version} -""".format(llvm_version=ghc_config.llvm_version) +.. |llvm-version-min| replace:: {llvm_version_min} +.. |llvm-version-max| replace:: {llvm_version_max} +""".format(llvm_version_min=ghc_config.llvm_version_min, llvm_version_max=ghc_config.llvm_version_max) # General information about the project. project = u'Glasgow Haskell Compiler' diff --git a/docs/users_guide/ghc_config.py.in b/docs/users_guide/ghc_config.py.in index e2f5c71d5d..dcc7fbaef6 100644 --- a/docs/users_guide/ghc_config.py.in +++ b/docs/users_guide/ghc_config.py.in @@ -20,4 +20,5 @@ lib_versions = { version = '@ProjectVersion@' -llvm_version = '@LlvmVersion@' +llvm_version_min = '@LlvmMinVersion@' +llvm_version_max = '@LlvmMaxVersion@' |