我终于设置了mingw和msys,现在我想编译libjpeg。我从 projekt 页面 (jpeg-8d) 下载了最新的 libjpeg 源并提取了文件。
然后我像这样运行配置命令:
./configure --build=x86_64-w64-mingw32 --prefix=/D/Libraries/bin/jpegd-8d
之后我想用 make 进行构建,但出现以下错误:
$ make
make all-am
make[1]: Entering directory `/D/Libraries/sources/jpeg-8d'
CC jaricom.lo
CC jcapimin.lo
jcapimin.c:127:1: error: conflicting types for 'jpeg_suppress_tables'
jcapimin.c:128:1: note: an argument type that has a default promotion can't match an empty parameter name list declaration
In file included from jcapimin.c:22:0:
jpeglib.h:982:14: note: previous declaration of 'jpeg_suppress_tables' was here
make[1]: *** [jcapimin.lo] Error 1
make[1]: Leaving directory `/D/Libraries/sources/jpeg-8d'
make: *** [all] Error 2
我在这里看到了这篇文章,其中一个人和我有同样的问题:libjpeg:编译错误
建议运行“autoheader”命令。我尝试这样做,但出现以下错误:
sh: autoheader:command not found
我用谷歌搜索 autoheader 和 mingw / msys 但我找不到答案。
所以我的问题是:是否有另一种解决方案来编译它?如果没有,我如何在 msys / mingw64 中安装所需的工具?
问候