Eclipse C/C++ (CDT) add -l option (linking math module) gcc -lm(Eclipse C/C++ (CDT) 添加 -l 选项(链接数学模块) gcc -lm)
问题描述
我正在尝试让 linux (Ubuntu) 上的 eclipse 链接数学模块.通常我会与 gcc -lm 链接.如何让 eclipse 添加这个?它是否在 Project->Properties 下的库路径中?数学模块位于 linux Ubuntu 系统的什么位置?
I am trying to have eclipse on linux (Ubuntu) link the math module. Normally I would link with gcc -lm. How do I get eclipse to add this? Is it in library paths under Project->Properties? Where does the math module reside on a linux Ubuntu system?
推荐答案
沿着这个路径:Project->Properties->C/C++ Build->Settings,然后在 Tools 选项卡下:GCC Linker->Libraries
Somewhere along this path: Project->Properties->C/C++ Build->Settings, then under the Tools tab: GCC Linker->Libraries
至于在系统的哪个位置,一般是/usr/lib/libm.so.
As for where it is in the system, usually /usr/lib/libm.so.
仅供参考,这对我的系统来说都是正确的,但由于多种原因,您的系统可能会略有不同.如果需要,应该不难调整.
FYI, this is all true of my system, but may differ slightly on yours for any number of reasons. Shouldn't be hard to adjust if needed.
这篇关于Eclipse C/C++ (CDT) 添加 -l 选项(链接数学模块) gcc -lm的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Eclipse C/C++ (CDT) 添加 -l 选项(链接数学模块) gcc
基础教程推荐
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01