gpt4 book ai didi

c - GCC - 添加库

转载 作者:行者123 更新时间:2023-11-30 19:10:01 26 4
gpt4 key购买 nike

我想使用头文件中的函数gmp.hmpfr.h ,位于文件 /opt/local/include 中。

但是当我运行gcc时与 -v ,所有搜索路径都类似于 /Application/Xcode.app/Contents/etc

我尝试添加 LD_LIBRARY_PATH="/opt/local/include".bash_profile但它不起作用。编译器要么告诉我 'gmp.h' file not found ,或Undefined symbols for architecture x86_64

我应该做什么?

最佳答案

将评论转换为答案。

您需要添加 -I/opt/local/include 来编译命令(以指定 header 的位置)和 -L/opt/local/lib-lgmp-lmpfr(可能以相反的顺序 - MPFR 在 GMP 之前)来链接命令。

That works! Would you mind explaining a little bit the logic behind this? For example if I had another header file header.h I need, how should I include it?

将其包含在#include "header.h"中。您可以使用 -I/directory/containing/header 编译代码以查找 header 。您也可以使用 -L/directory/containing/指定库(libheader.alibheader.dylib,因为您似乎在 macOS 上)所在的位置lib-lheader — 或任何合适的内容。

  • -I 告诉预处理器在指定目录中查找头文件,因此它会查找 /directory/containing/header/header.h例如。

  • -L 告诉链接器在哪里查找库(因此它会查找 /directory/having/lib/libheader.dylib 等)。

  • -lheader 告诉链接器查找 libheader.alibheader.dylib (或本地等效项)图书馆。

除了使用.dylib vs .so vs .dll vs ...(和.a.lib 与 ...),相同的原则也适用于其他系统。

这可能是重复的。

关于c - GCC - 添加库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42012010/

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