gnu: texlive-latex-base: Skip JIT formats on riscv64-linux.

* gnu/packages/tex.scm (texlive-latex-base)[arguments]: Adjust custom
'build phase to also skip the jit formats on riscv64-linux.
This commit is contained in:
Efraim Flashner 2021-08-18 11:28:12 +03:00
parent b34eb09311
commit 5783091d66
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2981,9 +2981,10 @@ (define-public texlive-latex-base
"platex-dev eptex" "uplatex-dev euptex"
"csplain pdftex" "mf mf-nowin" "mex pdftex" "pdfmex pdftex"
"luacsplain luatex" "optex luatex"
;; LuaJIT is not ported to powerpc64le* yet and
;; LuaJIT is not ported to powerpc64le* or riscv64 yet and
;; building these fail on powerpc.
,@(if (target-powerpc?)
,@(if (or (target-powerpc?)
(target-riscv64?))
'("luajittex" "luajithbtex" "mfluajit") '())
"cont-en xetex" "cont-en pdftex" "pdfcsplain xetex"
"pdfcsplain pdftex" "pdfcsplain luatex" "cslatex pdftex"