How to have an AbstractAnalyzer without AnalyzerType category? #7363
-
|
Hello, I am implementing a Ghidra extension for which I created a class that extends My goal for my class to execute only once at the end of the execution of all other analyzers. For now I extended Maybe I need to implement Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
There are a couple current analyzers that also only want to run once. They do a bit of hacky stuff to accomplish it. For an example, check out |
Beta Was this translation helpful? Give feedback.
There are a couple current analyzers that also only want to run once. They do a bit of hacky stuff to accomplish it.
For an example, check out
ghidra/Ghidra/Features/Base/src/main/java/ghidra/app/plugin/core/analysis/DWARFAnalyzer.java
Lines 75 to 85 in 502eea1