You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Chen Peng Lim <ch...@coherity.com> on 2002/10/14 19:25:09 UTC

Compiling Xalan to 64-bit

Hi,

I would like to build xalan for c++ in 64-bit on the HP-UX 11.00 platform,
I'd like to know if I can safely do so in particular, in the source codes
whether:

- int is assumed to be the same size (# of bits) with long
- pointers are casted to int (or vice versa)
- bit shifting in a long assumes a long is 32-bit
- bit masking of long with a 32-bit mask

if any of the above is true, then it'll not be safe for me to build it as
64-bit app.

Thanks.

CP