Answered by:
Visual Studio 2012 Express only for Windows 8?

Question
-
It looks like VS 2012 Pro works fine on Windows 7, but VS 2012 Express only works on Windows 8? Is this correct?
I am just looking for better c++0x support than was available with 2010.
Thanks,
David
Sunday, June 3, 2012 1:16 PM
Answers
-
On 03/06/2012 15:16, daviddoria wrote:
It looks like VS 2012 Pro works fine on Windows 7, but VS 2012 Express only works on Windows 8? Is this correct?
I am just looking for better c++0x support than was available with 2010.It seems that the 2012 Express Edition of Visual C++ allows only building Metro apps, and since Metro is only for Windows 8, I'd conclude that VC++ Express 2012 can only target Windows 8.
If you want better C++11 support for free, consider some other compiler, like GNU C++:
http://gcc.gnu.org/gcc-4.7/cxx0x_status.html
You can download and use the MinGW distro from here:
Giovanni
- Marked as answer by Helen Zhao Monday, June 11, 2012 3:25 AM
Sunday, June 3, 2012 4:41 PM
All replies
-
On 03/06/2012 15:16, daviddoria wrote:
It looks like VS 2012 Pro works fine on Windows 7, but VS 2012 Express only works on Windows 8? Is this correct?
I am just looking for better c++0x support than was available with 2010.It seems that the 2012 Express Edition of Visual C++ allows only building Metro apps, and since Metro is only for Windows 8, I'd conclude that VC++ Express 2012 can only target Windows 8.
If you want better C++11 support for free, consider some other compiler, like GNU C++:
http://gcc.gnu.org/gcc-4.7/cxx0x_status.html
You can download and use the MinGW distro from here:
Giovanni
- Marked as answer by Helen Zhao Monday, June 11, 2012 3:25 AM
Sunday, June 3, 2012 4:41 PM -
- Edited by pvdg42 Monday, June 11, 2012 2:46 PM
- Proposed as answer by Swapnil99pro Tuesday, June 12, 2012 6:51 AM
Monday, June 11, 2012 2:37 PM -
hey man,
from what I heard, Visual Studio C++ is actually one of the worst when it comes to supporting C++11 feautures. Im not saying this entire compiler + IDE is bad, but if you want thourough C++11 support use G++ (GNU C++) or if you have money left for this use the Intel C++ compiler (one of the most efficient compilers in the world). BTW, I usually never use these new feautures added by C++11.
Monday, June 18, 2012 2:02 PM