带有 -lm 标志的 GCC 链接器问题

发布于 2024-10-16 19:13:41 字数 430 浏览 3 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北城挽邺 2024-10-23 19:13:41

此外,库规范必须位于引用它们的对象之后(参见链接器标志位于错误的位置)。

Furthermore, library specifications have to come after the objects referencing them (cf. Linker flags in wrong place ).

去了角落 2024-10-23 19:13:41

-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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文