Problem while trying to create a CallGraph with SourceCode #598
-
I'm unsure what I'm doing wrong here.
I'm getting this exception:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you are using the RTA algorithm you need to also put your rt as inputlocation because otherwise it will fail to find java.lang.Object.
mmh it is hard to tell what is the issue because WALA (external dependency) causes it. It might be caused by your given path. it might not point exactly to the jar. It might have problems to find the main method in the given jar. Try to pass your entryMethodSignature to the call graph generation method. |
Beta Was this translation helpful? Give feedback.
If you are using the RTA algorithm you need to also put your rt as inputlocation because otherwise it will fail to find java.lang.Object.
This is not the error in this case but if you will fix it that will be next issue :)
Therefore add this to your Javaproject builder considering your java home env variable points to java 8
mmh it is hard to tell what is the issue because WALA (external dependency) causes it. It might be caused by your given path. it might not point exactly to the jar. It might have problems to find the main method …