Skip to content
Evan Teran edited this page Apr 11, 2016 · 32 revisions

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

For Ubuntu >= 13.10

# build and run edb
sudo apt-get install       \
    cmake                  \
    build-essential        \
    libboost-dev           \
    libqt5xmlpatterns5-dev \
    qtbase5-dev            \
    qt5-default

# 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
sudo apt-get install       \
    cmake                  \
    build-essential        \
    libboost-dev           \
    libqt5xmlpatterns5-dev \
    qtbase5-dev            \
    qt5-default

mkdir build
cd build
cmake ..
make
./edb
Clone this wiki locally