LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main ?

ad 2000-07-21 03:54:00
...全文
203 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
javaonline 2001-03-07
  • 打赏
  • 举报
回复
我刚好也碰到了这个问题,我查了一下 MSDN
出现这个错误的原因是你在你的程序中使用了 CRT 函数所致,而且,这个错误只出现在Release 中,解决的方法有两种:
一:找出你所的 CRT 函数,改用非 CRT 函数
二:去掉预编译 _ATL_MIN_CRT 就可以了,但是这样以来就会增加编译后文件的大小,大概几十 K 的样子。

原文如下:

INFO: LNK2001 Error ATL Release Build
ID: Q165076



--------------------------------------------------------------------------------
The information in this article applies to:

Microsoft Active Template Library, versions 2.0, 2.1, 3.0

--------------------------------------------------------------------------------


SUMMARY
Microsoft Active Template Library COM AppWizard generates a release build of your project using macro _ATL_MIN_CRT. Selecting this configuration causes the C run-time (CRT) library startup code to not be linked into your project. If you use functions or code in your project that require the use of the C run-time library startup code, you may experience LNK2001 - unresolved external errors when you try to build the release version of your project.



MORE INFORMATION
You can use some C run-time functions without requiring the CRT startup code. Examples include the mem* functions. Other functions require the CRT startup code. CRT string comparisons for example require the startup code as the CRT initializes some tables used for comparing. Global objects that have constructors also require the startup code. In Visual C++ 5.0, statically linking the startup code adds about 25K to your image (in Visual C++ 4.2 it is about 20K).

Following are some suggestions for finding the cause of the LNK2001 errors:

In the linker options there is an "ignore libraries" edit box. Enter Libcmt.lib into it, and build. You get several unresolved externals. This list is everything that you are using from the CRT. Look for things that you think may be pulling in the startup code and remove them if you can.


Don't ignore Libcmt.lib, but turn on the verbose flag for the linker. From this, you can see what is triggering CRT startup code to get pulled in.


If you decide that you really need the startup code, then remove the _ATL_MIN_CRT define from the project settings. You can also dynamically link to the CRT, which reduces your image size but requires the CRT's DLL. If you turn on exception handling you have to pull in the startup code. Even when building minsize the default is to statically link to the CRT and use _ATL_MIN_CRT.
UltraUnAsm 2000-07-21
  • 打赏
  • 举报
回复
我猜你是直接打开(或编辑)了一个Winmain程序就Build。VC++此时假定你要建立Console程序而不是GUI程序,而Console程序的Startup Code要载入的是main()而不是Winmain(),导致连接失败。改正的方法是将菜单Project/Settings下Link项Option内的/subsystem:console改为/subsystem:windows。更稳妥的做法是以后先New一个Win32 GUI Project,再拷贝入你的程序,再Build。
hyzx2000 2000-07-21
  • 打赏
  • 举报
回复
你写了main()吗?含有main()的源文件在工程中吗?
tbmac 2000-07-21
  • 打赏
  • 举报
回复
在链接的时候没有找到main函数,build的文件只是全部程序的一部分

16,471

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC相关问题讨论
社区管理员
  • 基础类社区
  • Web++
  • encoderlee
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

        VC/MFC社区版块或许是CSDN最“古老”的版块了,记忆之中,与CSDN的年龄几乎差不多。随着时间的推移,MFC技术渐渐的偏离了开发主流,若干年之后的今天,当我们面对着微软的这个经典之笔,内心充满着敬意,那些曾经的记忆,可以说代表着二十年前曾经的辉煌……
        向经典致敬,或许是老一代程序员内心里面难以释怀的感受。互联网大行其道的今天,我们期待着MFC技术能够恢复其曾经的辉煌,或许这个期待会永远成为一种“梦想”,或许一切皆有可能……
        我们希望这个版块可以很好的适配Web时代,期待更好的互联网技术能够使得MFC技术框架得以重现活力,……

试试用AI创作助手写篇文章吧