texlive-bin: disable mfluajit on ppc64(le) (#45475)

LuaJIT currently has no 64-bit Power support and so breaks the build on such platforms.
This commit is contained in:
CrystalGamma 2018-08-23 15:30:19 +02:00 committed by xeji
parent 97bfb34670
commit 43eb8b9a93

View File

@ -95,12 +95,13 @@ core = stdenv.mkDerivation rec {
configureFlags = common.configureFlags
++ [ "--without-x" ] # disable xdvik and xpdfopen
++ map (what: "--disable-${what}") [
++ map (what: "--disable-${what}") ([
"dvisvgm" "dvipng" # ghostscript dependency
"luatex" "luajittex" "mp" "pmp" "upmp" "mf" # cairo would bring in X and more
"xetex" "bibtexu" "bibtex8" "bibtex-x" "upmendex" # ICU isn't small
]
] ++ stdenv.lib.optional (stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit) "mfluajit")
++ [ "--without-system-harfbuzz" "--without-system-icu" ] # bogus configure
;
enableParallelBuilding = true;