mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
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:
parent
b34eb09311
commit
5783091d66
1 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue