Gregg Morrison wrote:
On Mon, 21 Jun 2004 02:37:42 -0700
"Anthony Nemmer" <[EMAIL PROTECTED]> wrote:
$dummy = 2048*1024*1024;
printf("%llu $dummy\n",$dummy);
$dummy *= 2;
printf("%llu $dummy\n",$dummy);
$dummy *= 2;
printf("%llu $dummy\n",$dummy);
with active perl build 804 for win32 I obtain:
2
On Mon, 21 Jun 2004 02:37:42 -0700
"Anthony Nemmer" <[EMAIL PROTECTED]> wrote:
> $dummy = 2048*1024*1024;
> printf("%llu $dummy\n",$dummy);
> $dummy *= 2;
> printf("%llu $dummy\n",$dummy);
> $dummy *= 2;
> printf("%llu $dummy\n",$dummy);
>
> with active perl build 804 for win32 I obtain:
> 214
On Mon, 21 Jun 2004 02:37:42 -0700
"Anthony Nemmer" <[EMAIL PROTECTED]> wrote:
> And then by doing
>
>use integer;
>
> you get 64 bit integer math on a 32 bit microprocessor? That IS
> interesting.
try this:
$dummy = 2048*1024*1024;
printf("%llu $dummy\n",$dummy);
$dummy *= 2;
printf("%ll
ntacts list | Trash this message | Show original
On Mon, 21 Jun 2004 02:37:42 -0700, Anthony Nemmer
<[EMAIL PROTECTED]> wrote:
>
> And then by doing
>
>use integer;
>
> you get 64 bit integer math on a 32 bit microprocessor? That IS
> interesting.
>
> Tony
>
I don't know how Perl does it... b
And then by doing
use integer;
you get 64 bit integer math on a 32 bit microprocessor? That IS
interesting.
Tony
Massimiliano Cialdi wrote:
On Mon, 21 Jun 2004 02:16:47 -0700
"Anthony Nemmer" <[EMAIL PROTECTED]> wrote:
You probably need a processor that has 64 bit arithmetic registers...
I
On Mon, 21 Jun 2004 02:16:47 -0700
"Anthony Nemmer" <[EMAIL PROTECTED]> wrote:
> You probably need a processor that has 64 bit arithmetic registers...
> I think a PIII has 32 bit arithmetic registers.
I don't think so, since I have successful compile it under linux on the
same machine.
best rega
You probably need a processor that has 64 bit arithmetic registers... I
think a PIII has 32 bit arithmetic registers.
Massimiliano Cialdi wrote:
I use Win XP, on a PIII 800, 320 MB RAM machine.
I tried to compile using
configure.com -Duse64bitint -de
but it says: "program too big for memory"!!!
I use Win XP, on a PIII 800, 320 MB RAM machine.
I tried to compile using
configure.com -Duse64bitint -de
but it says: "program too big for memory"!!!
I cannot understand...
How can I build active perl with "use64bitint" set?
thanks
--
Massimiliano Cialdi
[EMAIL PROTECTED]
[EMAIL PROTECTED]
_