libjpeg/missing: line 81: aclocal-1.14: command not found
时间: 2023-12-22 17:01:32 浏览: 117
这个错误是因为系统中缺少了一个叫做 aclocal-1.14 的命令而导致的。ACLOCAL 是 GNU autoconf 工具集中的一个命令,用来为 autoconf 构建用于检查系统特性的配置脚本。在构建 libjpeg 时,我们必须保证系统中已经安装了 autoconf 的相关工具集,同时也要保证它们的版本是符合要求的。
要解决这个问题,我们需要确认系统中是否安装了 autoconf 工具集,并且要检查 aclocal-1.14 命令是否存在。如果不存在,则需要安装相应的版本。你可以通过 package manager(如 apt、yum、brew 等)来安装这些软件包。
在安装完成后,重新执行构建命令,应当不再出现这个错误。
需要注意的是,有时候这个错误可能是由于环境变量配置不正确,导致系统找不到相关的命令。在这种情况下,你需要检查环境变量的设置,确保相关路径已经正确配置。
相关问题
/usr/lib/gcc-cross/aarch64-linux-gnu/7/../../../../aarch64-linux-gnu/bin/ld: 当搜索用于 ./libjpeg.a 时跳过不兼容的 -ljpeg /usr/lib/gcc-cross/aarch64-linux-gnu/7/../../../../aarch64-linux-gnu/bin/ld: 找不到 -ljpeg
这个错误提示表明 ld 在搜索 ./libjpeg.a 时跳过了不兼容的 -ljpeg,同时找不到 -ljpeg。这可能是由于缺少 libjpeg 库或者库路径不正确导致的。你可以尝试检查库路径是否正确,并且确保 libjpeg 库已经正确安装。如果问题仍然存在,你可以尝试使用 -L 选项指定库路径,或者使用 -l 选项指定库名称。
Command line: -prefix /home/liuyh/workspace/qt5.14.2-arm -opensource -confirm-license -release -strip -shared -xplatform linux-arm-gnueabi-g++ -optimized-qmake -c++std c++11 --rpath=no -pch -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcanvas3d -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtlocation -skip qtmacextras -skip qtnetworkauth -skip qtpurchasing -skip qtremoteobjects -skip qtscript -skip qtscxml -skip qtsensors -skip qtspeech -skip qtsvg -skip qttools -skip qttranslations -skip qtwayland -skip qtwebengine -skip qtwebview -skip qtwinextras -skip qtx11extras -skip qtxmlpatterns -make libs -make examples -nomake tools -nomake tests -gui -widgets -dbus-runtime --glib=no --iconv=no --pcre=qt --zlib=qt -no-openssl --freetype=qt --harfbuzz=qt -no-opengl -linuxfb --xcb=no -tslib --libpng=qt --libjpeg=qt --sqlite=qt -plugin-sql-sqlite -I/opt/tslib/include -L/opt/tslib/lib -recheck-all executing config test machineTuple + arm-linux-gnueabi-g++ -dumpmachine > sh: 1: arm-linux-gnueabi-g++: not found test config.qtbase.tests.machineTuple FAILED executing config test verifyspec + cd /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/config.tests/verifyspec && /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/bin/qmake "CONFIG -= qt debug_and_release app_bundle lib_bundle" "CONFIG += shared warn_off console single_arch" 'QMAKE_LIBDIR += /opt/tslib/lib' 'INCLUDEPATH += /opt/tslib/include' -early "CONFIG += cross_compile" /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec + cd /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/config.tests/verifyspec && MAKEFLAGS= /usr/bin/make clean && MAKEFLAGS= /usr/bin/make > rm -f verifyspec.o > rm -f *~ core *.core > arm-linux-gnueabi-g++ -c -O2 -march=armv7-a -mtune=cortex-a7 -mfpu=neon -mfloat-abi=hard -O2 -march=armv7-a -mtune=cortex-a7 -mfpu=neon -mfloat-abi=hard -pipe -O2 -w -fPIC -I/home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec -I. -I/opt/tslib/include -I/home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/mkspecs/linux-arm-gnueabi-g++ -o verifyspec.o /home/liuyh/workspace/QT5.14.2/qt-everywhere-src-5.14.2/qtbase/config.tests/verifyspec/verifyspec.cpp > make:arm-linux-gnueabi-g++:命令未找到 > make: *** [Makefile:172:verifyspec.o] 错误 127
这个错误可能是由于缺少相关的编译器或者库文件,或者是由于目标平台设置不正确导致的。你需要检查你的编译环境和目标平台设置,确保它们都是正确的。另外,根据错误提示,arm-linux-gnueabi-g++命令未找到,可能是缺少相关工具链导致的。你需要安装适合的交叉编译工具链来解决这个问题。同时,你也可以尝试使用其他目标平台进行编译,看是否可以解决这个问题。
阅读全文