mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Disable more LuaJIT components on powerpc64le systems.
Fixes: <https://bugs.gnu.org/49218>. * gnu/packages/tex.scm (texlive-bin)[#:configure-flags]: Add "--disable-luajithbtex" on powerpc64le systems. (texlive-latex-base)[#:phases][build]: Add "mfluajit" to the disabled-formats list on powerpc64le systems.
This commit is contained in:
parent
4407ad0fd7
commit
68b0e0d511
1 changed files with 3 additions and 1 deletions
|
@ -338,6 +338,7 @@ (define-public texlive-bin
|
|||
,@(if (string-prefix? "powerpc64le" (or (%current-target-system)
|
||||
(%current-system)))
|
||||
'("--disable-luajittex"
|
||||
"--disable-luajithbtex"
|
||||
"--disable-mfluajit")
|
||||
'()))
|
||||
|
||||
|
@ -2688,10 +2689,11 @@ (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.
|
||||
,@(if (string-prefix? "powerpc64le"
|
||||
(or (%current-target-system)
|
||||
(%current-system)))
|
||||
'("luajittex") '())
|
||||
'("luajittex" "luajithbtex" "mfluajit") '())
|
||||
"cont-en xetex" "cont-en pdftex" "pdfcsplain xetex"
|
||||
"pdfcsplain pdftex" "pdfcsplain luatex" "cslatex pdftex"
|
||||
"mptopdf pdftex" "uplatex euptex" "jadetex pdftex"
|
||||
|
|
Loading…
Reference in a new issue