> libhwrld.so: HelloWorld.C HelloWorld.h > g++ $(CXXFLAGS) $< -o $@ This isn't the right way to generate a .so file. You need to use the -shared switch on gcc (I presume this is also supported by g++, but you can use gcc to transform a g++-generated .o file into a .so). Matt Welsh, UC Berkeley ---------------------------------------------------------------------- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
- Compiling shared objects for JNI Kevin McWhirter
- Re: Compiling shared objects for JNI Matt Welsh
- Re: Compiling shared objects for JNI Jacob Nikom