mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
look for 32-bit JRE libraries under lib/i386
This commit is contained in:
parent
05ff032f69
commit
6df0b2cfd9
@ -200,7 +200,8 @@ class MyClasspath : public Classpath {
|
|||||||
#ifdef ARCH_x86_64
|
#ifdef ARCH_x86_64
|
||||||
sb.append("/lib/amd64");
|
sb.append("/lib/amd64");
|
||||||
#else
|
#else
|
||||||
sb.append("/lib");
|
// todo: handle other architectures
|
||||||
|
sb.append("/lib/i386");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2272,7 +2273,8 @@ JVM_GetMethodIxByteCodeLength(Thread*, jclass, jint) { abort(); }
|
|||||||
extern "C" JNIEXPORT void JNICALL
|
extern "C" JNIEXPORT void JNICALL
|
||||||
JVM_GetMethodIxExceptionTableEntry(Thread*, jclass, jint,
|
JVM_GetMethodIxExceptionTableEntry(Thread*, jclass, jint,
|
||||||
jint,
|
jint,
|
||||||
local::JVM_ExceptionTableEntryType*) { abort(); }
|
local::JVM_ExceptionTableEntryType*)
|
||||||
|
{ abort(); }
|
||||||
|
|
||||||
extern "C" JNIEXPORT jint JNICALL
|
extern "C" JNIEXPORT jint JNICALL
|
||||||
JVM_GetMethodIxExceptionTableLength(Thread*, jclass, int) { abort(); }
|
JVM_GetMethodIxExceptionTableLength(Thread*, jclass, int) { abort(); }
|
||||||
|
Loading…
Reference in New Issue
Block a user