我在一个学校项目上工作,我正在使用教师提供的.lib文件。我也有随附的.h文件和#include
我正在处理的.cpp文件。当我编译我得到:
undefined reference to Image::Image(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >)'
*更新
我的问题是如何在Linux上编译时链接visual studio库(.lib)文件。搜索后我没有成功尝试:
#pragma comment (lib,"Image.lib")
和
#pragma include "Image.lib"
我发现的大多数其他答案都指向常规的VS项目功能,当然这在Code中是不可用的。感谢。