Skip to content

Commit 82077ef

Browse files
committed
add Ghidra native binary support for arm64 os
1 parent 98c2802 commit 82077ef

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
6363
"remoteUser": "vscode",
6464
"features": {
65-
"java": "11"
65+
"java": "11",
66+
"gradle": "latest"
6667
}
6768
}

.devcontainer/post-create.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,9 @@ pip install ghidra_bridge
2424
python -m ghidra_bridge.install_server .ghidra_bridge
2525

2626
# Install pyhdira
27-
pip install pyhidra
27+
pip install pyhidra
28+
29+
# If arm64 os, need to build native binaries for Ghidra
30+
if uname -a | grep -q 'aarch64'; then
31+
$GHIDRA_INSTALL_DIR/support/buildNatives
32+
fi

0 commit comments

Comments
 (0)