Is there anyway to build a solution to target 64 bit environment in vs2003? My solution is native c++ not visual c++. Any help would be greatly appreciated.
cheers,
RWendi
|
Is there anyway to build a solution to target 64 bit environment in vs2003? My solution is native c++ not visual c++. Any help would be greatly appreciated. cheers, RWendi
| |||||
feedback
|
Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.
|
This page on 2003's lack of 64-bit targeting seems to address your issue: http://www.toymaker.info/Games/html/64_bit.html.
Upgrading to a newer edition of Visual Studio looks like the safer, non-hackish solution, if possible. | |||
feedback
|
|
As Warren points out, this isn't easy with VS2003. You need to install the x64 compiler from the platform SDK. We ran this way for a couple of years (starting with even earlier versions and the IA64 compiler). There were separate project configurations for X64 builds, so in addition to the normal DEBUG and RELEASE configurations we had DEBUG_X64 and RELEASE_X64. But you have to launch VS studio with the paths set up for either the x86 or x64 compilers & libraries. You couldn't switch between them on the fly. I believe there was a command line switch /useenv that told VS to set its various paths from environment variables. We had bat files to set this all up. It is messy, and every now and then we'd build the wrong project configuration for the environment which always took a while to sort out. You are much better off upgrading to VS2005/VS2008 where the target architecture is exposed directly in the GUI. | |||
|
feedback
|
|
Sounds like a viable solution... going to try it before accepting the answer. votes up! RWendi | |||
|
feedback
|