mr.pppoe
mr.pppoe

Reputation: 3945

32bit Visual Studio generate 64bit executable

I have a 64bit machine, if I installed 32bit visual studio, can I generate 64bit executable?

The actual problem is that I am moving my projection from Linux to Windows which uses C++11. On the Windows I only have access to the 32bit version of Visual Studio 2013. I am wondering if it will work.

The project uses massive memory and C++11 features not supported by Visual Studio 2012.

Upvotes: 1

Views: 485

Answers (1)

Csq
Csq

Reputation: 5855

Visual Studio is a 32-bit application, there is no 64-bit version. It can compile 64-bit executables.

Upvotes: 2

Related Questions