使用 GCC 将数学库链接到 C90 代码

发布于 2024-12-03 16:39:45 字数 594 浏览 1 评论 0原文

我想利用数学库编译一个简单的 C90 代码:

main.c:

#include <stdlib.h>
#include <stdio.h>
#include <math.h>

int main()
{
  printf("M_PI: %f\n", M_PI);
}

我使用 GCC 编译器并使用选项 -ansi -pedantic 来强制执行 C90 标准。

gcc -ansi -pedantic -lm main.c

但它无法编译。以下是错误信息:

main.c: In function ‘main’:
main.c:7:25: error: ‘M_PI’ undeclared (first use in this function)
main.c:7:25: note: each undeclared identifier is reported only once for each function it appears in

我的问题是,为什么? C90标准是否禁止使用数学库?

I would like to compile a simple C90 code utilizing math library:

main.c:

#include <stdlib.h>
#include <stdio.h>
#include <math.h>

int main()
{
  printf("M_PI: %f\n", M_PI);
}

I use GCC compiler and use option -ansi -pedantic to enforce C90 standard.

gcc -ansi -pedantic -lm main.c

But it doesn't compile. The following is the error message:

main.c: In function ‘main’:
main.c:7:25: error: ‘M_PI’ undeclared (first use in this function)
main.c:7:25: note: each undeclared identifier is reported only once for each function it appears in

My question is, why? Does C90 standard prohibits the use of math library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

北风几吹夏 2024-12-10 16:39:45

当需要严格的 ISO 标准时,M_PI 未定义。查看三角函数下的页面。建议使用-ansi时,自己定义即可:

#define M_PI 3.14159265358979323846264338327

M_PI isn't defined when strict iso standard is required. Look on this page under trigonometric functions. It is suggested that when using -ansi, just define it yourself:

#define M_PI 3.14159265358979323846264338327
一场信仰旅途 2024-12-10 16:39:45

M_PI 通常被声明为宏,并且有一个显式保护 #if !define(_ANSI_SOURCE) (至少在 OSX 中),这表明 ANSI 实现不支持

gcc,您也可以使用 < code>-std=c90 强制 C90

M_PI is generally declared as a macro and there is an explicit guard #if !defined(_ANSI_SOURCE) (at least in OSX), which suggests that the ANSI implementation doesnt support it

for gcc you can also use -std=c90 to force C90

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