使用 .xpdf 编译时出现以下错误make
。我试过使用命令:LIBS=-l make
但它不起作用。我知道问题是c编译器无法识别源代码中的数学代码,因为数学库对它不可用,但我不知道如何修复它。
[ 71%] Linking CXX executable pdftohtml
/usr/bin/ld: CMakeFiles/xpdf_objs.dir/Gfx.cc.o: undefined reference to symbol 'acos@@GLIBC_2.2.5'
//usr/lib64/libm.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[2]: *** [xpdf/CMakeFiles/pdftohtml.dir/build.make:219: xpdf/pdftohtml] Error 1
make[1]: *** [CMakeFiles/Makefile2:428: xpdf/CMakeFiles/pdftohtml.dir/all] Error 2
make: *** [Makefile:130: all] Error 2
我已将Makefile和CmakeLists.txt放在 pastebin 上以获取更多信息。