generated from clearbluejar/ghidra-python-vscode-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Ghidra dev reference, tested for 10.2.3
- Loading branch information
1 parent
7c202b8
commit 6652842
Showing
1 changed file
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,16 @@ pip install pyhidra | |
# If arm64 os, need to build native binaries for Ghidra | ||
if uname -a | grep -q 'aarch64'; then | ||
$GHIDRA_INSTALL_DIR/support/buildNatives | ||
fi | ||
fi | ||
|
||
# Setup Ghidra Dev for Reference | ||
git clone [email protected]:NationalSecurityAgency/ghidra.git ~/ghidra-master | ||
pushd ~/ghidra-master | ||
|
||
# Follow setup from https://github.com/NationalSecurityAgency/ghidra/blob/master/DevGuide.md | ||
gradle -I gradle/support/fetchDependencies.gradle init | ||
gradle prepdev | ||
|
||
popd | ||
|
||
echo 'To open up a Ghidra latest dev: code ~/ghidra-master' |