GP-2774 Implementation of GhidraGo for Linux, Windows, and Mac

This commit is contained in:
ghidraffe
2023-12-01 22:49:09 +00:00
committed by ghidra1
parent 1b813ed33e
commit 83f90d6b3d
25 changed files with 2189 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
:: GhidraGo launch
@echo off
setlocal
set SCRIPT_FILE=%~dp0%
:: in dev mode, SCRIPT_FILE is Ghidra/RuntimeScripts_U/Windows/support/GhidraGo/ghidraGo
:: in release mode, SCRIPT_FILE is support/GhidraGo/ghidraGo
:: BASE_DIR is the base directory of ext-u
:: Initially assume to be in release mode.
set BASE_DIR=%SCRIPT_FILE:~0,-1%\..\..
if not exist %BASE_DIR%\Ghidra (
:: set base dir to location of windows base script dir
set BASE_DIR=%BASE_DIR%\..\..\..\..\ghidra\Ghidra\RuntimeScripts\Windows
)
call "%BASE_DIR%\support\launch.bat" fg jdk GhidraGo "" "" ghidra.GhidraGo "%*"