I'm compiling a program on my 64bit machine, but I'm not sure if it produces 32-bit or 64-bit output.. How can I check if a file is 32bit or 64bit on Windows?
feedback
|
migrated from serverfault.com Apr 22 '10 at 8:15
This question came from our site for system administrators and desktop support professionals.
|
You can use GNUfile for windows. The first value in the file header tells you the architecture: either 0x14C for x86 or 0x8664 for x64 | |||
feedback
|
|
Just run it and have a look at the Processes tab in Windows Task Manager. If there is a *32 suffix after the process name, it's 32-bit, otherwise it's 64-bit (provided you're on a 64-bit OS). | |||||||
feedback
|
|
You could run the 'file' command from linux in a cygwin environment to test. You could also place some debug statement like 'print sizeof(int)' (schematically) to check. | |||||
feedback
|