首页 > 其他分享 >VC 6 编译时一直处于Linking...状态,无响应

VC 6 编译时一直处于Linking...状态,无响应

时间:2023-11-09 12:37:02浏览次数:42  
标签:... VC Service Visual Linking 编译 virus program

我安装上VC后,一编译程序,要么一直处于编译状态,要么处于linking...状态,VC就像死了一样。

不管英文版,中文版,装没装补丁都那样。

 

有时候VC经常 出现这样的情况,运行的时候,显示linking无法中止,关也关不了;
点stop build也不行
只好CTRL+ALT+DEL关掉。

 

应该是VC的BUG。。。。。
我有时也出现过这种情况 。

 

终于找到了,我装了卡巴斯基就这样子,把它关了,就可以LINK了。

 

这种情况看来是VC经常发生的问题,解决办法似乎只有强制关闭,重新打开时注意先Clean掉Debug下的东西。再编译应该不会卡了。 

=================

1) Ensure that your program is clean from viruses. If you have anti-virus installed, turn off real-time files system protection.
2) Ensure that you have enough free disk space
3) Install the latest Visual Studio Service Pack
If this doesn't help, uninstall Visual Studio, install in again and install the latest Service Pack.

=================

Do you use Norton Anti-Virus or a similar program?  If so, then try DISABLING it for the folders where you are building VC++ applications. 
There is very little chance that a virus will end up there (unless you're writing one) and the coincidence of ongoing virus scanning and VC++'s operations seem to cause a conflict.

=================

 

 

http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_20807862.html



标签:...,VC,Service,Visual,Linking,编译,virus,program
From: https://blog.51cto.com/emanlee/8275913

相关文章

  • spring mvc 异常统一处理方式
    springmvc异常统一处理方式springMVC提供的异常处理主要有两种方式,一种是直接实现自己的HandlerExceptionResolver,另一种是使用注解的方式实现一个专门用于处理异常的Controller——ExceptionHandler。1、HandlerExceptionResolver:实现自己的HandlerExceptionResolver,Hand......
  • SpringMVC中Velocity的配置
    pom.xml所需velocity的jar<dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>org.apache.ve......
  • Spring mvc中@RequestMapping 6个基本用法小结
    小结下springmvc中的@RequestMapping的用法。 1)最基本的,方法级别上应用,例如:    Java代码  @RequestMapping(value="/departments")public"simplePatternmethodwascalled");return"someResult";}  则访问http://loc......
  • 2023-11-08:用go语言,字符串哈希原理和实现 比如p = 233, 也就是课上说的选择的质数进制
    2023-11-08:用go语言,字符串哈希原理和实现比如p=233,也就是课上说的选择的质数进制"31256..."01234hash[0]=3*p的0次方hash[1]=3*p的1次方+1*p的0次方hash[2]=3*p的2次方+1*p的1次方+2*p的0次方hash[3]=3*p的3次方+1*p的2次方+2*p......
  • SpringMVC整合Shiro权限框架
    最近在学习Shiro,首先非常感谢开涛大神的《跟我学Shiro》系列,在我学习的过程中发挥了很大的指导作用。学习一个新的东西首先就是做一个demo,多看不如多敲,只有在实践中才能发现自己的欠缺,下面记录下来我整合shiro的过程。如果有不足之处,还望各位看官多多指出。......
  • import torch_geometric报错Could not find module '...\torch_sparse\_convert_cpu
    按照官网步骤安装完torch-scatter、torch-sparse、torch-cluster和torch-spline-conv等依赖项,也成功安装了torch_geometric,但在导入的时候还是报错: 原因是没有C++环境,在该网址中https://visualstudio.microsoft.com/visual-cpp-build-tools/下载并安装C/C++DLL动态链接库,即可......
  • Visual Studio 2008安装ASP.NET MVC 2 RTM
    1首先,要安装VisualStudio2008SP1,下载地址http://www.microsoft.com/en-us/download/details.aspx?id=109862下载ASP.NETMVC2RTM(英文版,2.5M,AspNetMVC2_VS2008.exe)下载地址http://www.microsoft.com/en-us/download/details.aspx?id=220793双击AspNetMVC2_VS2008.e......
  • 在ASP.NET MVC框架中,如何处理多个提交按钮?
    内容来自DOChttps://q.houxu6.top/?s=在ASP.NETMVC框架中,如何处理多个提交按钮?在ASP.NETFrameworkBeta中,有几种方法可以处理同一表单中的多个提交按钮。一种方法是使用一个隐藏字段来区分不同的提交按钮。例如:<%Html.BeginForm("MyAction","MyController",FormMethod......
  • Eolink Apikit 版本更新:数据字典功能上线、支持 MongoDB 数据库操作...
    ......
  • javaWeb&springMVC
    Servlet1:servlet定义servlet是开发动态web的一门技术,通过servlet实现与用户的动态交互。2:使用方式(1)javaWeb中只需要继承HttpServlet接口,重写其中的doGet和doPost方法即可编写一个servlet;写好servlet程序后需要在web.xml文件中编写映射,相当于将我们缩写的servlet注册到web服务......