Re: SIGSEGV with JNI_CreateJavaVM

2000-01-25 Thread Pierre Héroux
I installed jdk1.2.2RC3 solved the problem but now I get the following message Font specified in font.properties not found [--dingbats-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific] How can I fix it ? Pierre -- To UNSUBSCR

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
The example helloworld.cpp gives me the same error. Here is my makefile. What's wrong Pierre JDK = /usr/local/jdk1.2.2 REP_INC = -I$(JDK)/include \ -I$(JDK)/include/linux REP_LIB = -L$(JDK)/lib/i386 \ -L$(JDK)/jre/lib/i386 \ -L$(JDK)/jre/lib/i386/classic \

Re: SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Juergen Kreileder
> Pierre Héroux writes: Pierre> I use JDK1.2.2 RC2 on RedHat 6.1. The following code Pierre> gives a SIGSEGV on JNI_CreateJavaVM. Could you tell me Pierre> where is the problem. Pierre> #include Pierre> #include Pierre> #include Pierre> int main(int argc, ch

SIGSEGV with JNI_CreateJavaVM

2000-01-24 Thread Pierre Héroux
I use JDK1.2.2 RC2 on RedHat 6.1. The following code gives a SIGSEGV on JNI_CreateJavaVM. Could you tell me where is the problem. #include #include #include int main(int argc, char **argv) { JavaVM * jvm; JNIEnv * env; JavaVMInitArgs vm_args; vm_args.version = 0x00010001; JNI_Ge