我正在尝试在BLFS中构建texlive源代码(Beyond Linux From Scratch)。
export TEXARCH=$(uname -m | sed -e s/i.86/i386/ -e s/$/-linux/) &&
mkdir texlive-build &&
cd texlive-build &&
../configure \
--prefix=/opt/texlive/2015 \
--bindir=/opt/texlive/2015/bin/$TEXARCH \
--datarootdir=/opt/texlive/2015 \
--includedir=/opt/texlive/2015/include \
--infodir=/opt/texlive/2015/texmf-dist/doc/info \
--libdir=/opt/texlive/2015/lib \
--mandir=/opt/texlive/2015/texmf-dist/doc/man \
--disable-native-texlive-build \
--disable-static --enable-shared \
--with-system-cairo \
--with-system-fontconfig \
--with-system-freetype2 \
--with-system-gmp \
--with-system-graphite2 \
--with-system-harfbuzz \
--with-system-icu \
--with-system-libgs \
--with-system-libpaper \
--with-system-libpng \
--with-system-mpfr \
--with-system-pixman \
--with-system-poppler \
--with-system-xpdf \
--with-system-zlib \
--with-banner-add= - BLFS &&
make
即使我安装了所有软件包,我也会收到以下错误。
检查请求的系统libpaper库...失败
检查请求的系统libpng库...失败
检查请求的系统freetype2库...失败
检查请求的系统pixman库...失败
检查请求的系统cairo库...失败
检查请求的系统gmp库...失败
检查请求的系统mpfr库...失败
检查请求的系统poppler库...失败
检查请求的系统xpdf库...失败
检查请求的系统graphite2库...失败
检查请求的系统icu库...失败
检查请求的系统harfbuzz库...失败
configure:error:某些请求的系统库失败
任何帮助将不胜感激。
答案 0 :(得分:1)