makefile 已经指定了静态的位置,并且Makefile能找到静态库,但是仍然报错函数未定义。
可能原因是静态库使用了C语言编写,在静态库对应的头文件中,添加extern "C"后再编译
extern “C”
{
int funtion();
int test2();
}
makefile 已经指定了静态的位置,并且Makefile能找到静态库,但是仍然报错函数未定义。
可能原因是静态库使用了C语言编写,在静态库对应的头文件中,添加extern "C"后再编译
extern “C”
{
int funtion();
int test2();
}