c++ c 混合编程的 undefined reference问题

使用C++编程时,有时要用到第三方的库,而第一方库是以C给出的,奇怪的是明明已经把C文件加入工程,头文件也已经引入,编译里还是出现

undefined reference

问题在这里,第三方的C库的头文件没有加入extern "C",在C文件的头文件加入如下即可

#ifdef  __cplusplus  

extern "C" {  

#endif  

/* C头文件的其它声明 */

 

#ifdef  __cplusplus  

}  

#endif  /* end of __cplusplus */

posted @ 2015-08-19 10:21  OpenUSB  阅读(1503)  评论(0编辑  收藏  举报