vote up 4 vote down star
2

I'd like to configure visual studio 2005 to copy .dll's based on whether the OS is 64-bit or 32-bit during a build.

I do not want to specify what the platform target is.

My first attempt was to use a batch file to lookup the Windows version, but some 32-bit and 64-bit versions of Windows share the same version number.

Anyone know of any way to check this?

Thanks!

flag

3 Answers

vote up 3 vote down check

You should be able to read the environment variable %PROCESSOR_ARCHITECTURE%. Here is some great information on it.

http://blogs.msdn.com/david.wang/archive/2006/03/26/HOWTO-Detect-Process-Bitness.aspx

link|flag
vote up 5 vote down

Check out isWow64, I think that shopuld give you what you are after.

Determines whether the specified process is running under WOW64.

link|flag
vote up -1 vote down
sizeof(void*)

http://en.wikipedia.org/wiki/64-bit#64-bit_data_models

link|flag
1  
That would imply that the determination would happen at compile time. In which case, one could simply use the _WIN32 and _WIN64 #defines. – Chris Dolan Oct 14 '08 at 23:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.