编译 xpdf 时对符号 acos@@GLIBC_2.2.5 的引用未定义

编译 xpdf 时对符号 acos@@GLIBC_2.2.5 的引用未定义

使用 编译 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

我已经把我的MakefileCmake列表.txt在 pastebin 上了解更多信息。

答案1

调试代码后,我使用的解决方案是-lpaper在命令期间添加DCMAKE_CXX_FLAGS或,两者都有效。感谢@steeldriver 的精彩见解。DCMAKE_EXE_LINKER_FLAGScmake

相关内容