我正在学习使用Atom编辑器进行C语言的相关使用。
现在我需要在代码中调用一个外部函数库,比如#include "cv.h".
但是编译器提示 the file not found.请问如何才能正确引用非外部函数库。
请各位帮忙解决一下,不胜感激。
巴扎黑2017-04-17 11:54:27
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