提问人:JMBCODE 提问时间:7/1/2023 最后编辑:IgorJMBCODE 更新时间:7/1/2023 访问量:103
我使用 vcpkg 下载了 wxWidgets 并尝试从 wxWidgets 网站编译示例,但我收到“未解析的外部符号”错误 [重复]
I downloaded wxWidgets using vcpkg and tried to compile an example from the wxWidgets website, but I’m getting an ‘unresolved external symbol’ error [duplicate]
问:
库的 #include 正常工作,Visual Studio 2019 不会指出函数中的任何错误。但是,编译时,会出现以下错误:
代码: LNK2019 描述: 函数“int __cdecl invoke_main(void)”(?invoke_main@@YAHXZ) 中引用的未解析的外部符号 _main 文件:MSVCRTD.lib(exe_main.obj) 线路:1
示例是这样的: 示例示例的代码是这样的:
// Start of wxWidgets "Hello World" Program
#include <wx/wx.h>
class MyApp : public wxApp
{
public:
bool OnInit() override;
};
wxIMPLEMENT_APP(MyApp);
class MyFrame : public wxFrame
{
public:
MyFrame();
private:
void OnHello(wxCommandEvent& event);
void OnExit(wxCommandEvent& event);
void OnAbout(wxCommandEvent& event);
};
enum
{
ID_Hello = 1
};
bool MyApp::OnInit()
{
MyFrame* frame = new MyFrame();
frame->Show(true);
return true;
}
MyFrame::MyFrame()
: wxFrame(nullptr, wxID_ANY, "Hello World")
{
wxMenu* menuFile = new wxMenu;
menuFile->Append(ID_Hello, "&Hello...\tCtrl-H",
"Help string shown in status bar for this menu item");
menuFile->AppendSeparator();
menuFile->Append(wxID_EXIT);
wxMenu* menuHelp = new wxMenu;
menuHelp->Append(wxID_ABOUT);
wxMenuBar* menuBar = new wxMenuBar;
menuBar->Append(menuFile, "&File");
menuBar->Append(menuHelp, "&Help");
SetMenuBar(menuBar);
CreateStatusBar();
SetStatusText("Welcome to wxWidgets!");
Bind(wxEVT_MENU, &MyFrame::OnHello, this, ID_Hello);
Bind(wxEVT_MENU, &MyFrame::OnAbout, this, wxID_ABOUT);
Bind(wxEVT_MENU, &MyFrame::OnExit, this, wxID_EXIT);
}
void MyFrame::OnExit(wxCommandEvent& event)
{
Close(true);
}
void MyFrame::OnAbout(wxCommandEvent& event)
{
wxMessageBox("This is a wxWidgets Hello World example",
"About Hello World", wxOK | wxICON_INFORMATION);
}
void MyFrame::OnHello(wxCommandEvent& event)
{
wxLogMessage("Hello world from wxWidgets!");
}
我尝试在 Visual Studio 2019 社区的“空白项目”和“控制台应用程序”中运行它,两个项目中都发生了相同的错误。 发生了什么事?我该怎么办?
答:
0赞
JMBCODE
7/1/2023
#1
我已经解决了这个问题。错误是“链接器|系统|子系统“选项已设置为”控制台”。
评论
0赞
Igor
7/1/2023
答案是肯定的。您尝试在项目和空项目中运行它,这也是默认设置。CONSOLE
CONSOLE
0赞
Minxin Yu - MSFT
7/3/2023
嗨,很高兴知道您已经找到了解决此问题的解决方案!请考虑将其接受为答案,以将其状态更改为“已回答”。它还将帮助其他人解决类似的问题。
评论