我是一个完全的c ++新手。
我正在尝试使用Net Beans下的Wx-Widgets构建Windows应用程序。
到目前为止一切顺利。我已经安装了所有内容,配置,构建wx-widgets并将其附加到新项目 - 在这里有一个好人的帮助:Can't make wx-widget work with net-beans。
现在我尝试构建我的第一个应用程序:
#include <wx/string.h>
int main(int argc, char **argv)
{
wxPuts(wxT("A wxWidgets console application"));
}
这就是我得到的:
我不确定这是否可读,因此我粘贴错误:
g++ `C:\WXWIN\wx-config --cxxflags` -c -g -I../../../WXWIN/include `C:\WXWIN\wx-config --cxxflags` -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.cpp
/bin/sh.exe: C:WXWINwx-config: command not found
/bin/sh.exe: C:WXWINwx-config: command not found
In file included from ../../../WXWIN/include/wx/defs.h:21:0,
from ../../../WXWIN/include/wx/string.h:25,
from main.cpp:1:
../../../WXWIN/include/wx/platform.h:196:22: fatal error: wx/setup.h: No such file or directory
compilation terminated.
make[2]: *** [build/Debug/MinGW-Windows/main.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
make[2]: Leaving directory `/c/xampp/htdocs/WxWwigets_tutorial'
make[1]: Leaving directory `/c/xampp/htdocs/WxWwigets_tutorial'
BUILD FAILED (exit value 2, total time: 859ms)
请注意我已在链接器和编译器中设置了所有内容,如有序:http://wiki.wxwidgets.org/Compiling_using_Netbeans
答案 0 :(得分:1)
错误就在你面前:“找不到命令”。如果使用/bin/sh
,则必须使用Unix样式路径,例如C:/WXWIN/wx-config
而不是带有反斜杠的DOS路径。
我认真地建议您熟悉您正在使用的环境,而不是仅仅遵循Wiki说明而不理解它们,否则您的问题不会很快就会出现。