c++ - 如何在Atom等编译器中调用C语言外部头文件?
PHPz
PHPz 2017-04-17 11:52:27
0
1
550

我正在学习使用Atom编辑器进行C语言的相关使用。
现在我需要在代码中调用一个外部函数库,比如#include "cv.h".
但是编译器提示 the file not found.请问如何才能正确引用非外部函数库。
请各位帮忙解决一下,不胜感激。

PHPz
PHPz

学习是最好的投资!

reply all(1)
巴扎黑

It has nothing to do with the editor. Take a look at the compilation command. Add the directory of the connector file after the -I parameter, add the lib directory after -L, and add the name of the library to be linked after -l

For example

gcc test.c -o test -I/path/to/include -L/path/to/lib -lm -lpthread
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template