Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I still develop 32-bit applications using a 64-bit machine?

Tags:

I'm wondering if I can still develop 32-bit apps using a 64-bit machine (64-bit Windows Vista with Visual Studio 2008 SP1)? Because I am planning to buy a laptop with 64-bit Vista. Im asking just to make sure. Thanks!

like image 912
jerbersoft Avatar asked Jun 24 '09 04:06

jerbersoft


People also ask

Can I install a 32-bit software on a 64-bit machine?

The 64-bit versions of Windows don't provide support for 16-bit binaries or 32-bit drivers. Programs that depend on 16-bit binaries or 32-bit drivers can't run on the 64-bit versions of Windows unless the program manufacturer provides an update for the program.

How can I run 32-bit programs on 64-bit?

WOW64 is the x86 emulator that allows 32-bit Windows-based applications to run seamlessly on 64-bit Windows. This allows for 32-bit (x86) Windows applications to run seamlessly in 64-bit (x64) Windows, as well as for 32-bit (x86) and 32-bit (ARM) Windows applications to run seamlessly in 64-bit (ARM64) Windows.


1 Answers

64-bit Windows runs 32-bit Visual Studio just fine. Unless you specify you wish you use the x64 development tools, it will still compile 32-bit applications.

Straight from the page:

Visual Studio uses the 32-bit cross compiler even on a Windows 64-bit computer. You can, however, use devenv commands to create a command line environment to call 64-bit hosted tools.

Further Information: http://msdn.microsoft.com/en-us/library/ms246588(VS.80).aspx

like image 159
John T Avatar answered Sep 30 '22 17:09

John T