How do I find out if my processor is 32 bit or 64 bit (in your language of choice)? I want to know this for both Intel and AMD processors.
|
|
|||||||||||||||||||
|
|
|
Windows, C/C++:
|
||||||||||||||
|
|
|
In linux you can determine the "bitness" by reading
eg.
if it contains the
flag it's a x86 64 bit CPU (even if you have 32 bit linux installed) Not sure if this works for non x86 CPUs as well such as PPC or ARM. |
||
|
|
|
|
In Python :
As usual, pretty neat. But I'm pretty sure these functions return the platform where the exec has been built, not the the platforms it running on. There is still a small chance that some geek is running a 32 bits version on a 64 bits computer. You can have some more infos like :
ETC. This looks more like live data :-) |
|||
|
|
|
C# Code:
|
||
|
|
|
|
In .NET you can differentiate x86 from x64 by looking at the Size property of the IntPtr structure. The IntPtr.Size property is returned in bytes, 8 bits per byte so it is equal to 4 on a 32-bit CPU and 8 on a 64-bit CPU. Since we talk about 32-bit and 64-bit processors rather than 4-byte or 8-byte processors, I like to do the comparison in bits which makes it more clear what is going on. C#
PowerShell
|
|||
|
|
|
|
VBScript, Windows:
Another possible solution for Windows Script Host, this time in JScript and using the PROCESSOR_ARCHITECTURE environment variable:
|
|||
|
|
|
|
If this question was limited to Windows only - is it possible to find an "easy" solution? Isn't there some windows component that "knows this" ? |
||
|
|
|
|
The tricky bit here is you might have a 64 bit CPU but a 32 bit OS. If you care about that case it is going to require an asm stub to interrogate the CPU. If not, you can ask the OS easily. |
||
|
|
|
|
C#, OS agnostic
This is somewhat crude but basically tells you whether the CLR is running as 32-bit or 64-bit, which is more likely what you would need to know. The CLR can run as 32-bit on a 64-bit processor, for example. For more information, see here: http://stackoverflow.com/questions/336633/how-to-detect-windows-64-bit-platform-with-net |
|||
|
|
|
|
I was thinking, on a 64-bit processor, pointers are 64-bit. So, instead of checking processor features, it maybe possible to use pointers to 'test' it programmatically. It could be as simple as creating a structure with two contiguous pointers and then checking their 'stride'. |
||
|
