diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-08-18 11:28:12 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-02-02 12:21:24 +0200 |
commit | 5783091d66ba0a0b7892f5c2554453f3c4ae4d2d (patch) | |
tree | 6f96f6d89439370ed9aeed93629beba307c3a285 /gnu/packages/tex.scm | |
parent | b34eb09311b0e761c7883de1f7053174ee1e773c (diff) |
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.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d890cb6ad3..a68c42096b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2981,9 +2981,10 @@ formats.") "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" |