Skip to content

Commit

Permalink
add Ghidra native binary support for arm64 os
Browse files Browse the repository at this point in the history
  • Loading branch information
clearbluejar committed Aug 15, 2022
1 parent 98c2802 commit 82077ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "vscode",
"features": {
"java": "11"
"java": "11",
"gradle": "latest"
}
}
7 changes: 6 additions & 1 deletion .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@ pip install ghidra_bridge
python -m ghidra_bridge.install_server .ghidra_bridge

# Install pyhdira
pip install pyhidra
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

0 comments on commit 82077ef

Please sign in to comment.