How can I have my Perl script detect it's running on a 64-bit Windows machine, even if it's a 32-bit perl?
|
|
See this question. You check the |
||
|
|
|
|
Thanks Ben S. From the link in the question you linked to: msdn blog on how to dectect process bitness Yielded the following code: print "WIN64?: $ENV{PROCESSOR_ARCHITECTURE} \n"; print "WIN64?: $ENV{PROCESSOR_ARCHITEW6432} \n"; And the following output (32 bit perl on xp64) WIN64?: x86 WIN64?: AMD64 Seems if you're running a 32bit app on 64 bit win, you'll need to reference PROCESSOR_ARCHITEW6432. |
||
|
|
|
|
Another method, although a bit more involved, would be to check the Windows API function |
||
|
|
