1

I am working on an ARM64 computer with Windows 10 (Windows ARM).

I have installed Visual Studio Community. I can create C/C++ Console programs. It works fine. But generated binary files are compiled for an ARM target.

Is there a way to generate x86 (or x86_64) binary files ?

I have looked inside project configuration but I did not find anything.

Do you know where I can select binary output platform in visual studio ?

Thanks

Bob5421
  • 7,757
  • 14
  • 81
  • 175

1 Answers1

0

If you used the "Console App" template for C++ when you created the project, then the project was probably created with two 'platform' configurations: x64 and win32. Change the "active platform" to 'win32'. You can make that change in the "Configuration Manager" or in the standard toolbar.

Jonathan Dodds
  • 2,654
  • 1
  • 10
  • 14