我的程序有多个文件,我用g ++ -g编译。
当我尝试打破WinMain时,它表示功能未定义,但当我显示列表时,它就出现在那里。
(gdb) list Winmain.cpp:237
237 // WinMain
238 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance
pCmdLine, int nCmdShow) {
239
240 //Debuging mode
(gdb)
241
242 // IO thread ;;;; in charge of writing stuff to files
reak the mem thread
243 // /var/log/simulator.log
244 freopen ("debug.txt", "w", stdout);
245
246 // Strings
247 static TCHAR szWindowClass[] = TEXT("myWnd"); // std::s
indowClass = "myWnd";
248 static TCHAR szTitle[] = _T("Virtual Map"); // std::s
itle = "Virtual map";
249
250 // Windows Structure
(gdb) b Winmain.cpp:WinMain
Function "WinMain" not defined in "Winmain.cpp".
Make breakpoint pending on future shared library load? (y or [n]) n
我可以打破b Winmain.cpp:238,但为什么它不能按名称工作?
Windows 7上的mingw32 GNU gdb(GDB)7.6.1答案 0 :(得分:0)
WinMain()
是__stdcall
函数; (通过典型的Microsoft混淆,通过WINAPI
限定符传达了这些知识)。因此,其公开可见的名称被限定为WinMain@16()
;您应该在此限定名称上设置gdb
断点。