We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98c2802 commit 82077efCopy full SHA for 82077ef
.devcontainer/devcontainer.json
@@ -62,6 +62,7 @@
62
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
63
"remoteUser": "vscode",
64
"features": {
65
- "java": "11"
+ "java": "11",
66
+ "gradle": "latest"
67
}
68
.devcontainer/post-create.sh
@@ -24,4 +24,9 @@ pip install ghidra_bridge
24
python -m ghidra_bridge.install_server .ghidra_bridge
25
26
# Install pyhdira
27
-pip install pyhidra
+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