Page 1 of 1

Java 8 on x86-64

Posted: Wed Sep 13, 2023 4:48 pm
by arne_v
I started testing some of my stuff.

Not CPU, memory or IO intensive - but lots of reflection and JNI.

I found one real problem where something seems to have moved from P0 to P2 space and I needed to handle the 64 vs 32 bit pointers problem more correct.

And two trivial changes due to how I tested between Alpha and Itanium.

Build script:

$ if f$getsyi("arch_name") .eqs. "IA64"

->

$ if f$getsyi("arch_name") .eqs. "IA64" .or. f$getsyi("arch_name") .eqs. "x86_64"

C code:

#ifdef __ia64

->

#if defined(__ia64) || defined(__x86_64)

So far it looks pretty good.