vote up 1 vote down star

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?

flag

3 Answers

vote up 5 vote down

See this question. You check the %PROCESSOR_ARCHITECTURE% environment variable.

link|flag
vote up 2 vote down

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.

link|flag
vote up 0 vote down

Another method, although a bit more involved, would be to check the Windows API function IsWow64Process. An example of how to do this (in Delphi) is given in the answer to this question.

link|flag

Your Answer

Get an OpenID
or

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