nccgroup / Cartographer

Code Coverage Exploration Plugin for Ghidra
Apache License 2.0
317 stars 26 forks source link

Incompatibility with Ghidra 11.1.1 #11

Closed v-p-b closed 1 month ago

v-p-b commented 2 months ago

Describe the bug Ghidra removed PluginCategoryNames.DECOMPILER at some point, so the project won't build with the latest Ghidra version linked.

To Reproduce Steps to reproduce the behavior:

  1. set GHIDRA_INSTALL_DIR to the path of your Ghidra 11.1.1 installation
  2. run gradle build
  3. Observe
  4. See error:
/path/to/Cartographer/src/main/java/cartographer/CartographerPlugin.java:70: error: cannot find symbol
    category = PluginCategoryNames.DECOMPILER,

Expected behavior The project builds with latest Ghidra

Screenshots N/A

Additional context You should just choose an appropriate alternative category, with that the project builds.

TheZ3ro commented 2 months ago

8, #9 and #10 all fix this issue

v-p-b commented 2 months ago

8, #9 and #10 all fix this issue

Thanks, I missed those but they seem quite useful to base my further work on!