创建wxURL对象时,出现 undefined reference 错误:
#include <wx/url.h>
....
wxURL url(L"http://site.com/file.txt");
)]+0x8d)||undefined reference to `wxURL::wxURL(wxString const&)'|
)]+0xba)||undefined reference to `wxURL::~wxURL()'|
)]+0x15e)||undefined reference to `wxURL::~wxURL()'|
为什么会这样呢?
最佳答案
编译代码时,是否还要链接相应的.cpp
文件/库(与wxURL
相关)?这很重要,因为您的错误是链接时间。
关于c++ - wxWidgets:对wxURL的 undefined reference ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5945756/