forked from rmind/liblpm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some information about Java bindings. (rmind#10)
- Loading branch information
Showing
3 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# LPM library Java bindings | ||
|
||
## Building | ||
|
||
The below is an example of building on Debian 10. Set the `JAVA_HOME` | ||
according to your JDK version and system. | ||
|
||
```shell | ||
$ uname -srv | ||
Linux 4.9.0-9-amd64 #1 SMP Debian 4.9.168-1 (2019-04-12) | ||
$ sudo apt-get install openjdk-8-jre-headless openjdk-8-jdk-headless | ||
... | ||
$ cd liblpm/src/jni | ||
$ JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 make test | ||
``` | ||
|
||
This will produce the `liblpm.jar` file. Use it in your project. |