Home > other >  Visual C - folder structure
Visual C - folder structure

Time:10-24

I have started to learn C and i stuck in front of MSVC. Have you any idea about why MSVC have this folder structure? What is the purpose 'x64' folder inside 'Hostx86'? enter image description here

CodePudding user response:

Hostx86/x64 means the toolset (compiler, linker, etc) that is running on x86 32-bit host (that is 32-bit x86 applications), but produces x64 binaries.

  • Related