Hey everyone, I need some major help. I was going to get some development time in on one of my projects when I found that my installation of VS2008 Pro no longer wanted to compile any projects.
I have tried making empty problems with just the int main(), nothing else added or included, but I still get unresolved linker errors.
I have tried uninstalling everything related to VS2008 including .Net Framework 3.5.
Here are some of the errors I have been getting:
Error 5 error LNK2001: unresolved external symbol __imp__GetCurrentProcess@0 MSVCRT.lib
Error 13 error LNK2001: unresolved external symbol __imp__GetCurrentProcessId@0 MSVCRT.lib
Error 12 error LNK2001: unresolved external symbol __imp__GetCurrentThreadId@0 MSVCRT.lib
Error 14 error LNK2001: unresolved external symbol __imp__GetSystemTimeAsFileTime@4 MSVCRT.lib
Error 11 error LNK2001: unresolved external symbol __imp__GetTickCount@0 MSVCRT.lib
Error 3 error LNK2001: unresolved external symbol __imp__InterlockedCompareExchange@12 MSVCRT.lib
Error 1 error LNK2001: unresolved external symbol __imp__InterlockedExchange@8 MSVCRT.lib
Error 9 error LNK2001: unresolved external symbol __imp__IsDebuggerPresent@0 MSVCRT.lib
Error 10 error LNK2001: unresolved external symbol __imp__QueryPerformanceCounter@4 MSVCRT.lib
Error 7 error LNK2001: unresolved external symbol __imp__SetUnhandledExceptionFilter@4 MSVCRT.lib
Error 8 error LNK2001: unresolved external symbol __imp__SetUnhandledExceptionFilter@4 MSVCRT.lib
Error 2 error LNK2001: unresolved external symbol __imp__Sleep@4 MSVCRT.lib
Error 4 error LNK2001: unresolved external symbol __imp__TerminateProcess@8 MSVCRT.lib
Error 6 error LNK2001: unresolved external symbol __imp__UnhandledExceptionFilter@4 MSVCRT.lib
Error 15 fatal error LNK1120: 13 unresolved externals F:\Users\GMan\Documents\Visual Studio 2008\Projects\TEst\Release\TEst.exe
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World" << endl;
}
The project above is a Win32 Empty Console Application.
I have not used the program in several months but the only recent change was installing some updates for vista (including .net framework 4 in order to use the latest Live client).
I really need some help, all of the threads I have found thus far on Google have all said roughly the same thing:
something is wrong with the dependencies or framework install, reinstalling everything should fix it.
Tried it, but still getting these problems.