Skip to content
Evan Teran edited this page Apr 14, 2016 · 20 revisions

If you would like to install system wide instead of running from the build directory, please read Installing

For Fedora 21

# install dependancies
sudo yum install qt-devel qt-config gcc gcc-c++ boost-devel cmake

# install Capstone 3.0.4
git clone --depth=50 --branch=3.0.4 https://github.com/aquynh/capstone.git
pushd capstone
./make.sh
sudo ./make.sh install
popd

# build and run edb
git clone --recursive https://github.com/eteran/edb-debugger.git
cd edb-debugger
mkdir build
cd build
cmake ..
make
./edb

Clone this wiki locally