Reputation: 41
I am a newbie to QT. I used to play with QT examples on Win7 (32bit) and had a lot of fun. Now I bought a new Win8 (64bit)PC and wanted to work with QT.
I installed that lasted vs 2012 express + Qt 5.1.0 for Windows 64-bit (VS 2012, 525 MB) To my disappointment, After building, the exe of examples kept crashing my Win8. I doubt that the Qt 5.1.0 is stable enough for the developing.
I only need QT as an interface. I only use the widgets parts. And my development time is short.
I guess maybe an older version is more stable? Also I guess maybe the 32bit version is more stable?
1) Could anyone please suggest a more stable version and build? So that I can develop with it and release it.
2) Is it OK to run multiple versions of VS express and QT on one PC?
Upvotes: 3
Views: 1362
Reputation: 26429
I guess maybe an older version is more stable? Also I guess maybe the 32bit version is more stable?
That's possible. If I were you that's what I would do:
Could anyone please suggest a more stable version and build? So that I can develop with it and release it.
4.8.1. with vs2008 express works for me, but I've never tested it on windows 8.
Is it OK to run multiple versions of VS express and QT on one PC?
You should be able to do that (I used qt for vc and qt for mingw simultaneously), but you must make sure that "bin" folders (dlls and tools) of your qt installations are not in PATH. Otherwise things will get really messy, especially if you use several different compilers (different compilers use different name mangling schemes, so if you have qt dll for different compiler in your path, your application might not be able to start). If you're planning to use several different compilers, then you'll need one qt installation per compiler, even if qt version is identical.
Upvotes: 1