我在使用mingw的Windows上,当我使用以下内容尝试编译我的wxWidgets代码时
g++ main.cpp `wx-config --libs` `wx-config --cxxflags`
我收到以下错误
g++: `wx-config: No such file or directory
g++: `wx-config: No such file or directory
cc1plus.exe: error: unrecognized command line option "-flibs`"
cc1plus.exe: error: unrecognized command line option "-fcxxflags`"
我无法弄清楚如何使用gx-config
让g ++玩得很好请帮助,谢谢。
答案 0 :(得分:4)
你使用的是什么外壳?后引号在Windows命令提示符下不起作用。您可能需要使用msys和bash。