build/dev: Recipe to reload Ghidra on-the-fly

This commit is contained in:
2023-11-29 10:17:15 -05:00
parent d04fe419f0
commit 57e7330993

View File

@@ -3,3 +3,6 @@ build:
install: install:
rsync -av --delete /home/mkennedy/eclipse-workspace/gh8/data/languages/ /home/mkennedy/ghidra/ghidra_10.3_PUBLIC/Ghidra/Processors/h8/data/languages rsync -av --delete /home/mkennedy/eclipse-workspace/gh8/data/languages/ /home/mkennedy/ghidra/ghidra_10.3_PUBLIC/Ghidra/Processors/h8/data/languages
reload:
-ps aux | grep /usr/lib/jvm/java-17-openjdk-17.0.8.0.7-1.fc38.x86_64/bin/java | grep -- '-Djava.system.class.loader=ghidra.GhidraClassLoader' | grep -iv make | awk '{print $$2}' | xargs -r kill; cd ~/ghidra/ghidra_10.3_PUBLIC/ && ./ghidraRun;