问题:
我正在尝试在 Ubuntu Server 20.04 LTS 上构建和安装 ( configure
, make
, make install
...) tesseract版本 3 ( tesseract-ocr-3.02.02
) 并且发生以下错误...
构建和安装命令...
tar -zxvf tesseract-ocr-3.02.02.tar.gz
cd ./tesseract-ocr-3.02.02
./autogen.sh
./configure
make -j 4 && make install
ldconfig
错误输出...
[...]
-I../viewer -I/usr/local/include/leptonica -g -O2 -MT con_comp.lo -MD -MP -MF .deps/con_comp.Tpo -c con_comp.cpp -fPIC -DPIC -o .libs/con_comp.o
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I.. -O3 -DNDEBUG -DUSE_STD_NAMESPACE -I../cutil -I../ccutil -I../ccstruct -I../dict -I../ccmain -I../classify -I../textord -I../wordrec -I../neural_networks/runtime -I../image -I../viewer -I/usr/local/include/leptonica -g -O2 -MT con_comp.lo -MD -MP -MF .deps/con_comp.Tpo -c con_comp.cpp -o con_comp.o >/dev/null 2>&1
libtool: compile: g++ -DHAVE_CONFIG_H -I. -I.. -O3 -DNDEBUG -DUSE_STD_NAMESPACE -I../cutil -I../ccutil -I../ccstruct -I../dict -I../ccmain -I../classify -I../textord -I../wordrec -I../neural_networks/runtime -I../image -I../viewer -I/usr/local/include/leptonica -g -O2 -MT classifier_factory.lo -MD -MP -MF .deps/classifier_factory.Tpo -c classifier_factory.cpp -o classifier_factory.o >/dev/null 2>&1
mv -f .deps/char_samp.Tpo .deps/char_samp.Plo
mv -f .deps/con_comp.Tpo .deps/con_comp.Plo
mv -f .deps/classifier_factory.Tpo .deps/classifier_factory.Plo
make[2]: Leaving directory '/usr/local/lib/tesseract-ocr/cube'
make[1]: *** [Makefile:481: all-recursive] Error 1
make[1]: Leaving directory '/usr/local/lib/tesseract-ocr'
make: *** [Makefile:390: all] Error 2
问题:
我该怎么做才能获得有关此错误的更多信息?
重要的:
用于构建和安装 tesseract ( configure
, make
, make install
...) 的方法是一个标准且众所周知的过程......因此,基于此,我认为有已知的方法可以获取更多信息,以便我们可以诊断正在发生的事情。互联网上几乎没有关于这个特定错误的信息,所以我真的需要帮助。
谢谢!=D
问题解决了!
解决方案是升级到 3.05.02 版本,即提前 3 个“MINOR”,这降低了我们在兼容性方面的风险——在我们看来,升级 1“MAJOR”(4.1.1,当时最新)风险很大。
我们还必须更新 leptonica(依赖项)。使用了相同的推理:“1.71”->“1.74.1”(3 个“MINOR”)。
注意: I - 此 tesseract 版本需要包“pkg-config”;II - 版本控制逻辑参考 -> "MAJOR.MINOR.REVISION.BUILDNUMBER" 。
谢谢!=D
[参考:http ://programmers.stackexchange.com/questions/24987/what-exactly-is-the-build-number-in-major-minor-buildnumber-revision,https: //gist.github.com/ braitsch/ee5434f91744026abb6c099f98e67613,https://github.com/tesseract-ocr/tesseract/issues/941#issuecomment-304080060]