My current program, being compiled using Qt Creator, wont start. It wont even enter main(). I'm using Windows 7, 32 bit. The program doesn't use the QT API.

Regardless of whether I run it as admin, or run it from inside QtCreator or manually running the executable... it will not run.

Compiles fine. Build proccess looks good. Executable generated, game icon visible on executable. Wont run. Whether I'm compiling in debug or release, it wont do a thing.

When running, Qt goes through the basic steps ("Setting breakpoints...", "Loading someDllOrAnother...", "Application started."). After application started, nothing happens. QtCreator is fine, it doesn't freeze up or anything, but the program doesn't run. I have to manually kill the process (yes, it shows up as a proccess in Windows), or abort it in QT ("The gdb proccess exitted unexpectedly (crashed).")

Compile output:
Qt Code:
  1. Running build steps for project GameClient...
  2. Configuration unchanged, skipping qmake step.
  3. Starting: "C:/Qt/2010.05/mingw/bin/mingw32-make.exe" -w
  4. mingw32-make: Entering directory `D:/Desktop PC/Jacob/Projects/AdventureFar/GameClient/[Game]/Code/GameClient-build-desktop'
  5.  
  6. C:/Qt/2010.05/mingw/bin/mingw32-make -f Makefile.Release
  7.  
  8. mingw32-make[1]: Entering directory `D:/Desktop PC/Jacob/Projects/AdventureFar/GameClient/[Game]/Code/GameClient-build-desktop'
  9.  
  10. mingw32-make[1]: Nothing to be done for `first'.
  11.  
  12. mingw32-make[1]: Leaving directory `D:/Desktop PC/Jacob/Projects/AdventureFar/GameClient/[Game]/Code/GameClient-build-desktop'
  13.  
  14. mingw32-make: Leaving directory `D:/Desktop PC/Jacob/Projects/AdventureFar/GameClient/[Game]/Code/GameClient-build-desktop'
  15.  
  16. The process "C:/Qt/2010.05/mingw/bin/mingw32-make.exe" exited normally.
To copy to clipboard, switch view to plain text mode 

My guess is it isn't QT, but that somehow Windows has a problem with it, or maybe Norton Antivirus - but I disabled Norton and still it wont run. Any ideas how I can go about isolating the problem? Any ideas of what it might be?