Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我编译我的 wxWidgets 项目时,我收到很多错误,说明类似于:
undefined reference to _imp___ZN16wxEventHashTableD1EV
其中有 50 多个,当我尝试将 wxwidgets 静态链接到 exe 时,它才开始发生。我在windows下使用wxPack。当我动态链接 wxWidgets 时,这些错误没有出现。有谁知道这里发生了什么?
imp * 前缀意味着您仍然将链接器指向与动态 wxWidgets 构建一起导入的库。(.dll 文件位于 lib/gcc_dll/*)
确保您也静态构建了 wxWidgets,然后将链接器指向正确的位置。正确的文件应该在:lib/gcc_lib/*