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.
我正在使用本教程构建单元测试。但是,在编译我的代码时,出现以下两个错误:
未定义对“WinMain@16”的引用。 collect2: ld 返回 1 个退出状态。
未定义对“WinMain@16”的引用。
collect2: ld 返回 1 个退出状态。
为什么会这样?
您是否在创建 qapplication 的地方创建了 main 函数?这里有一个很好的例子
当您创建 DOS 可执行文件而不是 Windows GUI 可执行文件时,您也可能会遇到该错误。它正在寻找 winmain() 而不是 main(),