I have a problem with the fact that Visual Studio 2013 uses 32-bit cl.exe when creating for 64-bit purposes (VC \ bin \ x86_amd64) - it creates 64-bit code, but works with max. 4 GB of memory (apparently through TaskManager → * 32 next to cl.exe).
Since I get error C1060, "the compiler is out of the heap", I would really like to use the built-in 64-bit Toolchain.
It is located next to the Cross-Toolchain in VC \ bin \ amd64, but how can I configure Visual Studio to use it?
In addition, I use CMake to create my project. Is there a CMake option to select this Toolchain?
source
share