Heim > Fragen und Antworten > Hauptteil
我正在学习使用Atom编辑器进行C语言的相关使用。
现在我需要在代码中调用一个外部函数库,比如#include "cv.h".
但是编译器提示 the file not found.请问如何才能正确引用非外部函数库。
请各位帮忙解决一下,不胜感激。
巴扎黑2017-04-17 11:54:27
跟编辑器没有关系,你看看编译的命令是什么,加个-I参数后面接头文件的目录,-L后面加lib的目录,-l后面加要link的库的名字
比如
gcc test.c -o test -I/path/to/include -L/path/to/lib -lm -lpthread