An open API service indexing awesome lists of open source software.

https://github.com/electronstudio/libretrojava

LibRetro core implemented in Java
https://github.com/electronstudio/libretrojava

Last synced: 2 months ago
JSON representation

LibRetro core implemented in Java

Awesome Lists containing this project

README

          

# LibRetro Core Implemented in Java

Tested on Linux. Include paths for Windows will need to be added to Makefile.

Java must be installed and these env variables must be set in order to compile *and* in order to run.

Set paths

export JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
export LD_LIBRARY_PATH=$JAVA_HOME/lib/server

Compile C:

make

Compile Java:

javac java/src/LibRetro.java -d . && jar cf Test.jar *.class

Run:

RetroArch-Linux-x86_64.AppImage -v -L java_libretro.so Test.jar