Replies: 1 comment
-
Have you loaded You can add the following lines of code before calling val libs: String = "<your-path-to-rt-jar>" + File.separator + "rt.jar"
Options.v().set_soot_classpath(libs) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
TL;DR - I'm having troubles making Soot resolve Java classpaths within Scala code. It seems that Soot cannot find java.lang.objects class when trying to load it without an indication where it is looking for it.
The code that is being executed:
The stack trace:
If I try to omit the Scene.v().loadClassAndSupport("java.lang.Object") line, then the Soot clearly errors about missing classpath for java.lang.object. See bellow:
Extra info:
Soot version:
Command line (executed by IntelliJ IDEA):
Max Memory:
Beta Was this translation helpful? Give feedback.
All reactions