We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jni/src/com_polyfx_jssembly_Jssembly_Function.h
core/src/com/polyfx/jssembly/Jssembly.java
static { System.loadLibrary("Jssembly"); }
x64
Main.java
raw
compile
find -name "*.java" -type f >src.txt mkdir -p bin javac -cp ".:lib/*" -d bin @src.txt rm -f src.txt javah -cp bin -jni -d ../jni/src com.polyfx.jssembly.Jssembly gcc-8 -I"$JAVA_HOME/include" -I"$JAVA_HOME/include/darwin/" -o bin/libjssembly.jnilib -shared src/Jssembly.c javac -cp ".:core/bin:core/lib/*" Main.java
run: java -cp ".:core/bin:core/lib/*" -Djava.library.path=jni/bin Main
java -cp ".:core/bin:core/lib/*" -Djava.library.path=jni/bin Main
The text was updated successfully, but these errors were encountered:
No branches or pull requests
jni/src/com_polyfx_jssembly_Jssembly_Function.h
core/src/com/polyfx/jssembly/Jssembly.java
,static { System.loadLibrary("Jssembly"); }
is cross-platformx64
is implemented via ANTLR, although unit test inMain.java
fail catastrophically, producing core dumpraw
is fine, even works for shellcode 👍compile
run:
java -cp ".:core/bin:core/lib/*" -Djava.library.path=jni/bin Main
The text was updated successfully, but these errors were encountered: