Then again perl has been compiled with -Duse64bitint if that makes any difference.Yes ... it probably
does make a difference. I had missed that Cygwin's perl was also compiled with use64bitint.
Does it make sense to build perl with use64bitint, for a 32-bit machine, with $Config{longsize} set to 4 ? My Cygwin perl certainly isn't giving me 64-bit int handling capability. As with my other perls, only integers up to 53 bits can be handled accurately.
Anyway, my problem is that the following xs code is not portable:
long i;
if(SvIOK(a)) i = SvIV(a);
On my Cygwin perl I need to:
double d;
if(SvIOK(a)) d = SvNV(a);
or perhaps (untested):
long long ii;
if(SvIOK(a)) ii = (long long)SvIV(a);
I guess I just need to rethink what I'm trying to do.
Thanks
parv.
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.