.Net assembly PE Header has a target platform for 32-bit / 64-bit which is used when the assembly use native interop like p/invoke (other wise it would be Target=AnyCPU)
Is there any equivalent for Java when the Java application has an interface to some native interface through JNI? The JNI has to be either compiled for 32 or 64 bit
Is there an article explaining Java 64-bit architecutre and development? I wasn't able to find one
Thanks!