带有 -lm 标志的 GCC 链接器问题
我在使用 GCC 链接器时遇到问题,特别是使用 -lm
标志,因为我正在使用 math.h 中的一些函数。我收到以下错误:
main.c:(.text+0x8e5): 未定义 引用“地板”
main.c:(.text+0x901): 未定义 引用“ceil”
这是我的 makefile 的相关部分:
myprogram: main.o
gcc -Wall -pedantic -o myprogram main.o
main.o: main.c foo.h bar.h
gcc -Wall -pedantic -lm main.c
可能是我忽略的一些愚蠢的东西,但当涉及到 makefile 时我绝对不是专家。
I'm having issues with the GCC linker, specifically using the -lm
flag since I'm using some functions from math.h. I get the following errors:
main.c:(.text+0x8e5): undefined
reference to `floor'main.c:(.text+0x901): undefined
reference to `ceil'
Here's the relevant portion of my makefile:
myprogram: main.o
gcc -Wall -pedantic -o myprogram main.o
main.o: main.c foo.h bar.h
gcc -Wall -pedantic -lm main.c
Probably something silly I'm overlooking, but I'm definitely not an expert when it comes to makefiles.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此外,库规范必须位于引用它们的对象之后(参见链接器标志位于错误的位置)。
Furthermore, library specifications have to come after the objects referencing them (cf. Linker flags in wrong place ).
-lm 是一个链接器标志,因此您应该将其添加到上面的链接规则中(即,您将其添加到错误的规则中)。
-lm is a linker flag, so you should add it to the linking rule above (i.e., you added it to the wrong rule).