guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: guix-commits
Subject: 17/37: gnu: texlive-latex-base: Skip JIT formats on riscv64-linux.
Date: Tue, 2 Nov 2021 03:27:12 -0400 (EDT)

efraim pushed a commit to branch wip-riscv
in repository guix.

commit 4cd47b9ff1f560bcef36fc363367712af229c304
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Aug 18 11:28:12 2021 +0300

    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.
---
 gnu/packages/tex.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 0ccb532..db92d27 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2735,9 +2735,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 riscv 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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]