gpt4 book ai didi

c - 使用 gcc 链接库的简单方法

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:46:33 25 4
gpt4 key购买 nike

假设这是我的程序:

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

int main(void) {
double a = sqrt(20);
return 0;
}

当我们使用数学函数时,我们必须包含标题“math.h”文件。但是当使用 gcc 进行编译时,我们还必须指定我们的程序使用的共享库(在本例中是数学库)。为此,我们使用选项 -lm

添加使用共享库的选项并不总是很清楚(我知道它以 -l 开头,意思是 lib,但我没有任何简单的想法来获取字母在 -l 之后获取,除了在 google 上搜索)。

我的问题是:有没有一种简单的方法可以让我使用我包含的 header 获得与 gcc 一起使用的正确选项??

最佳答案

Is there a simple way that I can use to get the right option to use with gcc using the header that I have included ??

是的:阅读手册页或库随附的其他文档。

关于c - 使用 gcc 链接库的简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36561184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com