You should be using gcc not g++ as JNI requires C linkage. Take a look at this site for help and tuturials on using Java JNI with cygwin: http://www.inonit.com/cygwin/
Cheers William > I'm trying to create a DLL: > > --------------/HelloWorld.cpp/------ > #include <jni.h> > #include "HelloWorld.h" > #include <stdio.h> > > JNIEXPORT void JNICALL > Java_HelloWorld_displayMessage(JNIEnv *env, jobject obj) > { > printf("Hello world!\n"); > return; > } > > And if I try: > g++.exe HelloWorldImp.dll "HelloWorld.o" -L"d:\Dev-C++\lib" > -I"d:\Dev-C++\include" -I"D:\j2sdk\include" > -I"D:\j2sdk\include\win32" -I"d:\Dev-C++\include\g++-3" > -I"d:\Dev-C++\include" > > I get this error message: > > d:\Dev-C++\lib/libmingw32.a(main.o)(.text+0x8d):main.c: > undefined reference to `WinMain@16' > > Any experience? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/