catch_abort: Remove java interop & catch SIGILL (#1891)

* catch_abort: Remove java interop

It won't work anyway since we're exiting the thread immediately

* catch_abort: Also catch SIGILL
This commit is contained in:
Constantin Piber
2026-02-08 21:05:06 +01:00
committed by GitHub
parent 5b5e2b26f9
commit d8a5cdfb78
2 changed files with 5 additions and 35 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ main() {
download_launcher
if [ ! -f scripts/resources/catch_abort.so ]; then
gcc -fPIC -I$JAVA_HOME/include -I$JAVA_HOME/include/linux -shared scripts/resources/catch_abort.c -lpthread -o scripts/resources/catch_abort.so
gcc -fPIC -shared scripts/resources/catch_abort.c -lpthread -o scripts/resources/catch_abort.so
fi
JRE_ZULU="25.30.17_25.0.1"