There is a set with - files with extension.с: avl_tree.c, buf_read.c, db_prep.c, file_process.c, global_header.c, traverser.c. Used include files are in folder/usr/gcc/4.4/bin/include except for jni.h, and libraries are in folder/usr/gcc/4.4/bin/lib. How from them to create.so the file (if it is possible specify all options in this command)? It me interests in communication by creation of native of methods by means of JNI.
|
You really should read the documentation of GCC. Notably invoking GCC. The program library howto is also relevant. Very often, some builder is used to drive the build. GNU make is often used and has a good tutorial documentation. If your You usually want to compile each individual C source file into position independent code because shared objects have PIC code. You can use
to compile a C source I strongly suggest to enable almost all warnings with Then you have to link all these
You can link some shared libraries into a shared object. You may want to read Levine's book on linkers and loaders Of course if you use GNU You could use GNU libtool also. Maybe dlopen(3) could interest you. |
|||||
|
|
The question should probably give more information. Most sets of sources have a Makefile, configure script or some other item to set up to make the output (the .so library you want). gcc -dynamic -o file.so file.c will create an so file from one of the source files, but you probably want a single so from all of them. |
|||||
|
|

gcc -dynamic. – nneonneo Oct 21 '12 at 5:31