|
Revision 43, 0.6 kB
(checked in by jtang, 5 months ago)
|
Fixed a problem in shared memory where a function could return an uninitialized value.
Fixed RPM spec file for library installation on 64-bit systems.
Added a README that documents the build system.
|
| Line | |
|---|
| 1 |
Build and Install Instructions |
|---|
| 2 |
|
|---|
| 3 |
1. Run 'make' to compile libsipc. If the Java bindings are also |
|---|
| 4 |
needed then do 'make ENABLE_JAVA=1'. |
|---|
| 5 |
|
|---|
| 6 |
2. Run 'make install' to install the library, header files, and man |
|---|
| 7 |
pages to the default prefix, /usr/local. This prefix can be |
|---|
| 8 |
changed via PREFIX variable (e.g., 'make install PREFIX=/usr'). To |
|---|
| 9 |
install the Java bindings, add 'ENABLE_JAVA=1'. |
|---|
| 10 |
|
|---|
| 11 |
3. The Java bindings require a Java compiler capable of parsing Java |
|---|
| 12 |
>= 1.5. By default it invokes ${JAVA_HOME}/bin/javac, where |
|---|
| 13 |
JAVA_HOME is set to /usr/java/default. Override this variable if |
|---|
| 14 |
the JDK is located elsewhere. |
|---|