我正在尝试使用gnu make在MacOSX上编译程序mafTools。我收到以下错误:
cd mafExtractor && make all
clang -std=c99 -stdlib=libstdc++ -O3 -c -O3 -Wall -Werror --pedantic -funroll-loops -DNDEBUG -Wshadow -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -I ../../sonLib/lib -I ../inc -I ../external src/mafExtractorAPI.c -o src/mafExtractorAPI.o.tmp -lm
这给出了错误:
clang: error: -lm: 'linker' input unused [-Werror,-Wunused-command-line-argument]
make[1]: \*** [src/mafExtractorAPI.o] Error 1
make: \*** [mafExtractor.all] Error 2
我看了类似的错误,但无法修复它。任何帮助都感激不尽。谢谢!
这是包裹:https://github.com/dentearl/mafTools/tree/master/mafExtractor 这里的其他所有内容都已成功编译。
这是makefile: https://github.com/dentearl/mafTools/blob/master/mafExtractor/Makefile
非常感谢。
答案 0 :(得分:3)
您的clang
逗号包含-c
选项,这意味着您不想链接和解析外部引用,您只想生成一个未链接的目标文件。
您的-lm
选项表示您想要与数学库链接。
基本上,前面提到的选项是不兼容的 - 你不能同时连接数学库而不是链接。
TLDR;删除-lm