“C 语言 undefined reference to 'sqrt' 问题”的版本间的差异
跳到导航
跳到搜索
(创建页面,内容为“<pre> →gcc -Wall -lm distance.c * *gcc test.c –lm //-lm就是链接到math库 *: </pre>”) |
|||
第1行: | 第1行: | ||
<pre> | <pre> | ||
+ | |||
+ | |||
+ | ndefined reference to 'sqrt' | ||
+ | 实际上是没有链接math数学库 | ||
/*gcc -Wall -lm distance.c | /*gcc -Wall -lm distance.c | ||
第7行: | 第11行: | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | [https://blog.csdn.net/weiyuanzhuo/article/details/52382283 C 语言 undefined reference to 'sqrt' 问题解决] |
2019年10月30日 (三) 06:42的版本
ndefined reference to 'sqrt' 实际上是没有链接math数学库 /*gcc -Wall -lm distance.c * *gcc test.c –lm //-lm就是链接到math库 * */