I have a binary file and to get the content I have used "unpack" function.
My script can run for both 32 bit exe or 64 bit exe. Hence I have used the following code :
if ( $ENV{PROCESSOR_ARCHITECTURE} eq 'x86' )
{
@data = unpack( "LL8", $binary );
}
else
{
@data = unpack( "Q8", $binary );
}
print Dumper \@data;
But when I am executing the same using 32bit Active perl and 64 bit Active perl compilers, I am getting different results:
32-bit:
$VAR1 = [ 129864071, 0, 47193587, 0, 16448777, 0, 41067198, 0, 129 ];
64 bit:
$VAR1 = [ 129864071, 47193587, 16448777, 41067198, 129, 365173507, 25208052, 152155982 ]
What may be the reason for this difference? How can I make them similar while still using the 32bit unsigned long and 64bit unsigned quad values ?
(LL)8specification. – Jonathan Leffler Jan 8 at 17:35