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.
所以我有这个用 C++ 编写的 Wx 应用程序,我已经在 Linux Mint、Ubuntu 甚至 Mac 下测试过,但在 Arch Linux 下它似乎没有正确链接。我已经安装了所需的 wxgtk 库并且编译工作正常,但是当它进入链接阶段时,我得到很多输出,说找不到任何 Wx 方法。wx-config --libs 输出对我来说看起来是正确的,所以我不确定是什么导致了问题。如有必要,我会发布我的 Makefile,但目前看来这个问题只针对 Arch Linux。
以防万一有人对此大发雷霆,我将链接器行从
g++ `wx-config --libs` -o $(OBJS)
至
g++ -o $(OBJS) `wx-config --libs`
其原因在下面罗德里戈的评论中有详细说明。