- Catalog of Dependencies
- Install Development and Build Tools
- Setup Source Repository
- Setup Build Dependency Repository
- Building Ghidra
- Developing Ghidra
- Setup build in CI
- Building Supporting Data
The following is a list of dependencies, in no particular order. This guide includes instructions for obtaining many of these at the relevant step(s). You may not need all of these, depending on which portions you are building or developing.
- Java JDK 11 (64-bit) - Free long term support (LTS) versions of JDK 11 are provided by:
- Eclipse - It must support JDK 11. Eclipse 2018-12 or later should work. Other IDEs may work, but we have not tested them.
- Gradle 5.0 or later - We use version 5.0, and tested with up to 5.6.3.
- A C/C++ compiler - We use GCC on Linux, Xcode (Clang) on macOS, and Visual Studio (2017 or later) on Windows.
- Git - We use the official installer on Windows. Most Linux distros have git in their repos. Xcode provides git on macOS.
- Bash - This is moot on Linux and macOS. On Windows, we use MinGW. This may be distributed with Git for Windows.
- Bison and Flex - We use win-flex-bison v2.5.17. These packages may also be available in MSYS (MinGW). Most Linux distros have these in their repos. Xcode provides these for macOS.
- dex2jar. We use version 2.0.
- AXMLPrinter2
- HFS Explorer. We use version 0.21.
- Yet Another Java Service Wrapper. We use version 12.12 - Only to build Ghidra package.
- Eclipse PDE - Environment for developing the GhidraDev plugin.
- Eclipse CDT. We use version 8.6.0 - Build dependency for the GhidraDev plugin.
- PyDev. We use version 6.3.1 - Build dependency for the GhidraDev plugin.
There are many, many others automatically downloaded by Gradle from Maven Central and Bintray JCenter when building and/or setting up the development environment. If you need these offline, a reasonable course of action is to set up a development environment online, perhaps perform a build, and then scrape Gradle's cache.
If you're on Windows, install Git, MinGW, Bison, and Flex.
Many of the commands given below must be executed in Bash (Use git-bash or MSYS from MinGW).
IMPORTANT: The bison and flex executables may be named win-bison.exe
and win-flex.exe
.
Our build cannot currently cope with that, so you should rename them to bison.exe
and flex.exe
.
Install OpenJDK 11 and make sure it's the default java.
Install Eclipse. You can launch Eclipse with any JRE/JDK, but you'll need to ensure Eclipse knows about your JDK 11 installation. In Eclipse, select Window -> Preferences (Eclipse -> Preferences on macOS), then navigate to Java -> Installed JREs, and ensure a JDK 11 is configured.
Install Gradle, add it to your PATH
, and ensure it is launched using JDK 11.
You may choose any directory for your working copy, but these instructions will assume you have cloned the source to ~/git/ghidra
.
Be sure to adjust the commands to match your chosen working directory if different than suggested:
mkdir ~/git
cd ~/git
git clone git@github.com:NationalSecurityAgency/ghidra.git
Ghidra's build uses artifacts named as available in Maven Central and Bintray JCenter, when possible. Unfortunately, in some cases, the artifact or the particular version we desire is not available. So, in addition to mavenCentral and jcenter, you must configure a flat directory-style repository for manually-downloaded dependencies.
The flat directory-style repository can be created and populated automatically by a provided script, or manually by downloading the required dependencies. Choose one of the two following methods:
The flat directory-style repository can be setup automatically by running a simple Gradle script.
Navigate to ~/git/ghidra
and run the following:
gradle --init-script gradle/support/fetchDependencies.gradle init
The Gradle task to be executed, in this case init, is unimportant. The point is to have Gradle execute
the fetchDependencies.gradle
script. If it ran correctly you will have a new ~/git/ghidra/flatRepo/
directory populated with the following jar files:
- AXMLPrinter2
- csframework
- dex-ir-2.0
- dex-reader-2.0
- dex-reader-api-2.0
- dex-tools-2.0
- dex-translator-2.0
- dex-writer-2.0
- hfsx
- hfsx_dmglib
- iharder-base64
There will also be a new archive files at:
- ~/git/ghidra/Ghidra/Features/GhidraServer/build/
yajsw-stable-12.12.zip
- ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
PyDev 6.3.1.zip
- ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
cdt-8.6.0.zip
If you see these, congrats! Skip to building or developing. If not, continue with manual download instructions below...
Create the ~/git/ghidra/flatRepo/
directory to hold the manually-downloaded dependencies:
mkdir ~/git/ghidra/flatRepo
Download dex-tools-2.0.zip
from the dex2jar project's releases page on GitHub.
Unpack the dex-*.jar
files from the lib
directory to ~/git/ghidra/flatRepo
:
cd ~/Downloads # Or wherever
curl -OL https://github.com/pxb1988/dex2jar/releases/download/2.0/dex-tools-2.0.zip
unzip dex-tools-2.0.zip
cp dex2jar-2.0/lib/dex-*.jar ~/git/ghidra/flatRepo/
Download AXMLPrinter2.jar
from the "android4me" archive on code.google.com.
Place it in ~/git/ghidra/flatRepo
:
cd ~/git/ghidra/flatRepo
curl -OL https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/android4me/AXMLPrinter2.jar
Download hfsexplorer-0_21-bin.zip
from www.catacombae.org.
Unpack the lib
directory to ~/git/ghidra/flatRepo
:
cd ~/Downloads # Or wherever
curl -OL https://sourceforge.net/projects/catacombae/files/HFSExplorer/0.21/hfsexplorer-0_21-bin.zip
mkdir hfsx
cd hfsx
unzip ../hfsexplorer-0_21-bin.zip
cd lib
cp csframework.jar hfsx_dmglib.jar hfsx.jar iharder-base64.jar ~/git/ghidra/flatRepo/
Building the GhidraServer requires "Yet another Java service wrapper" (yajsw) version 12.12.
Download yajsw-stable-12.12.zip
from their project on www.sourceforge.net, and place it in:
~/git/ghidra/Ghidra/Features/GhidraServer/build
:
cd ~/Downloads # Or wherever
curl -OL https://sourceforge.net/projects/yajsw/files/yajsw/yajsw-stable-12.12/yajsw-stable-12.12.zip
mkdir -p ~/git/ghidra/Ghidra/Features/GhidraServer/build/
cp ~/Downloads/yajsw-stable-12.12.zip ~/git/ghidra/Ghidra/Features/GhidraServer/build/
Building the GhidraDev plugin for Eclipse requires the CDT and PyDev plugins for Eclipse.
Download cdt-8.6.0.zip
from The Eclipse Foundation, and place it in:
~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
:
cd ~/Downloads # Or wherever
curl -OL 'http://www.eclipse.org/downloads/download.php?r=1&protocol=https&file=/tools/cdt/releases/8.6/cdt-8.6.0.zip'
curl -o 'cdt-8.6.0.zip.sha512' -L --retry 3 'https://www.eclipse.org/downloads/sums.php?type=sha512&file=/tools/cdt/releases/8.6/cdt-8.6.0.zip'
shasum -a 512 -c 'cdt-8.6.0.zip.sha512'
mkdir -p ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
cp ~/Downloads/cdt-8.6.0.zip ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
Download PyDev 6.3.1.zip
from www.pydev.org, and place it in the same directory:
cd ~/Downloads # Or wherever
curl -L -o 'PyDev 6.3.1.zip' https://sourceforge.net/projects/pydev/files/pydev/PyDev%206.3.1/PyDev%206.3.1.zip
cp ~/Downloads/'PyDev 6.3.1.zip' ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build/
Before building, you may want to update the version and release name.
These properties are kept in ~/git/ghidra/Ghidra/application.properties
.
To build the full package, use Gradle:
gradle buildGhidra
The output will be placed in ~/git/ghidra/build/dist/
.
It will be named according to the version, release name, build date, and platform.
To test it, unzip it where you like, and execute ./ghidraRun
.
NOTE: Unless pre-built manually, the Eclipse GhidraDev plugin will not be included in the build. In addition, some other supporting data will also be missing. See the sections below for instructions on how to produce these components. You may also be able to copy some of these already-built components from a previous official distribution.
From the project root, execute:
gradle prepDev
The prepDev
tasks primarily include generating some source, indexing our built-in help, and unpacking some dependencies.
To develop/modify Ghidra, import Ghidra into Eclipse using the integrated BuildShip plugin. Select File -> Import, expand Gradle, and select "Existing Gradle Project." Select the root of the source repo as the root Gradle project. Be sure to select Gradle 5.0, or point it at your local installation. You may see build path errors until the environment is properly prepared, as described below.
Alternatively, you may have Gradle generate the Eclipse projects and import those instead. This is the way to go if you'd prefer not to activate Gradle's BuildShip plugin. From the project root:
gradle eclipse
Select File -> Import, expand General, and select "Existing Projects into Workspace." Select the root of the source repo, and select "Search for nested projects." Select all, and Finish. You may see build path errors until the environment is properly prepared, as described below.
Some of Ghidra's components are built for the native platform. We currently support Linux, macOS, and Windows 64-bit x86 systems. Others should be possible, but we do not test on them.
Ensure bison and flex are installed and in your PATH
.
Now build using Gradle:
On Linux:
gradle buildNatives_linux64
On macOS:
gradle buildNatives_osx64
On Windows:
gradle buildNatives_win64
This will build the decompiler, the demangler for GNU toolchains, the sleigh compiler, and (on Windows only) the PDB parser.
Optionally, to pre-compile all the language modules, you may also execute:
gradle sleighCompile
If the language modules are not pre-compiled, Ghidra will compile them at run time on an as-needed basis.
Developing the GhidraDev Eclipse plugin requires the Eclipse PDE (Plug-in Development Environment), which can be installed via the Eclipse marketplace. It is also included in the Eclipse IDE for RCP and RAP Developers. To generate the GhidraDev Eclipse projects, execute:
gradle eclipse -PeclipsePDE
Import the newly generated GhidraDev projects into Eclipse.
Note: If you are getting compilation errors related to PyDev and CDT, go into Eclipse's preferences, and under Target Platform, activate /Eclipse GhidraDevPlugin/GhidraDev.target.
See ~/git/ghidra/GhidraBuild/EclipsePlugins/GhidraDev/GhidraDevPlugin/build_README.txt
for instructions on how to build the GhidraDev plugin.
To run or debug Ghidra from Eclipse, use the provided launch configuration (usually under the "Run" or "Debug" buttons). If the launcher does not appear, it probably has not been marked as a favorite. Click the dropdown next to the "Run" button and select "Run Configurations." Then expand "Java Application" on the left to find the "Ghidra" launcher.
For running unit tests, run
gradle unitTestReport
for more complex integration tests run
gradle integrationTest
For running both unit test and integration test and generate report use
gradle combinedTestReport
For running build in headless mode on Linux, in CI environment, or in Docker, before running tests, run
Xvfb :99 -nolisten tcp &
export DISPLAY=:99
this is required to make AWT happy.
Some features of Ghidra require the curation of rather extensive databases. These include the Data Type Archives and Function ID Databases, both of which require collecting header files and libraries for the relevant SDKs and platforms. Much of this work is done by hand. The archives included in our official builds can be found in the [ghidra-data] repository.
This task is often done manually from the Ghidra GUI, and the archives included in our official build require a fair bit of fine tuning.
From a CodeBrowser window, select File -> Parse C Source.
From here you can create and configure parsing profiles, which lists headers and pre-processor options.
Then, click Parse to File to create the Data Type Archive.
The result can be added to an installation or source tree by copying it to ~/git/ghidra/Ghidra/Features/Base/data/typeinfo
.
This task is often done manually from the Ghidra GUI, and the archives included in our official build require a fair bit of fine tuning. You will first need to import the relevant libraries from which you'd like to produce a FID database. This is often a set of libraries from an SDK. We include a variety of Visual Studio platforms in the official build.
From a CodeBrowser window, select File -> Configure. Enable the "Function ID" plugins, and close the dialog. Now, from the CodeBrowser window, select Tools -> Function ID -> Create new empty FidDb. Choose a destination file. Now, select Tools -> Function ID -> Populate FidDb from programs. Fill out the options appropriately and click OK.
If you'd like some details of our fine tuning, take a look at ~/git/ghidra/Ghidra/Features/FunctionID/data/building_fid.txt
.