Skip to content
Evan Teran edited this page Apr 11, 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
sudo yum install qt-config
sudo yum install gcc
sudo yum install gcc-c++
sudo yum install boost-devel
sudo yum install 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
mkdir build
cd build
cmake ..
make
./edb

Clone this wiki locally