Microsoft Visual C ++ not responding when creating a project

When I build, VC ++ 6 will show "Linking ..." and programs will NEVER link. I tried to press STOP but not use. I can't even close VC ++ as it says it is still expanding the project.

How to fix it?

0


a source to share


2 answers


In the project properties under the Linker tab, set the / VERBOSE flag and this can help you see what it is loading and where it is choking. Be prepared to kill the task (having a task manager in the foreground before launching would be smart.) Also be prepared, because the / VERBOSE flag can trigger a lot! withdrawal. But your answer is probably in there somewhere.



Other things to check: you might have a lock on the output file. If you are trying to link an executable to a part of the program that you are already using, it might hang on you (although I think it would rather give you some kind of "do not delete" error.)

+1


a source


In Task Manager, the final task is "cl.exe" and / or "link.exe".



0


a source







All Articles