search

Home  >  Q&A  >  body text

c++ - 如何在Atom等编译器中调用C语言外部头文件?

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

PHPzPHPz2803 days ago546

reply all(1)I'll reply

  • 巴扎黑

    巴扎黑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
    

    reply
    0
  • Cancelreply