diff options
author | Loïc Hoguin <[email protected]> | 2023-05-16 10:46:58 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2023-05-16 10:46:58 +0200 |
commit | 12f04adbac2efff7e3f46d3d4840fe293a4a1f5d (patch) | |
tree | f5499923e83eaa23acf156d4eca5ac87a1ca65d6 /doc | |
parent | 72910c8559b057af17e1c9f4ffe42e75ed0ad877 (diff) | |
download | erlang.mk-12f04adbac2efff7e3f46d3d4840fe293a4a1f5d.tar.gz erlang.mk-12f04adbac2efff7e3f46d3d4840fe293a4a1f5d.tar.bz2 erlang.mk-12f04adbac2efff7e3f46d3d4840fe293a4a1f5d.zip |
Remove support for HiPE and ErlLLVM
Diffstat (limited to 'doc')
-rw-r--r-- | doc/src/guide/ci.asciidoc | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/doc/src/guide/ci.asciidoc b/doc/src/guide/ci.asciidoc index 2b69e28..2fa5feb 100644 --- a/doc/src/guide/ci.asciidoc +++ b/doc/src/guide/ci.asciidoc @@ -10,9 +10,7 @@ section of the xref:kerl[OTP version management] chapter.) === Configuring Erlang/OTP versions to test To use the CI plugin you must first configure which versions -of Erlang/OTP will be used. Erlang.mk provides three separate -configuration variables depending on whether you need a normal -OTP release, a HiPE-enabled release or an ErLLVM-enabled release. +of Erlang/OTP will be used. At the time of writing, this is how you would test against all the most recent patch releases of Erlang/OTP 19 and above: @@ -20,13 +18,6 @@ the most recent patch releases of Erlang/OTP 19 and above: [source,make] CI_OTP = OTP-19.0.7 OTP-19.1.6 OTP-19.2.3 OTP-19.3.6.2 OTP-20.0.4 -If you want to test against HiPE and ErLLVM but only with the -latest version of Erlang/OTP, the following could work: - -[source,make] -CI_HIPE = $(lastword $(CI_OTP)) -CI_ERLLVM = $(CI_HIPE) - Consult the xref:kerl[OTP version management] chapter for more information about Erlang/OTP versions and customization of the Erlang/OTP builds. |