eteran / edb-debugger

edb is a cross-platform AArch32/x86/x86-64 debugger.
GNU General Public License v2.0
2.66k stars 321 forks source link

Wiki: Compiling (Ubuntu) needs dependencies updated #846

Closed colematt closed 7 months ago

colematt commented 9 months ago

For Ubuntu >= 15.10

# install dependencies
sudo apt-get install       \
    cmake                  \
    build-essential        \
    libboost-dev           \
    libqt5xmlpatterns5-dev \
    qtbase5-dev            \
    qt5-default            \
    libqt5svg5-dev         \
    libgraphviz-dev        \
    libcapstone-dev        \
    pkg-config

Should now be For Ubuntu >= 22.04 LTS

# install dependencies
sudo apt-get install         \
    cmake                    \
    build-essential          \
    libdouble-conversion-dev \
    libboost-dev             \
    libqt5xmlpatterns5-dev   \
    qtbase5-dev              \
    qt5-qmake                \
    libqt5svg5-dev           \
    libgraphviz-dev          \
    libcapstone-dev          \
    pkg-config
10110111 commented 9 months ago

Should now be For Ubuntu >= 22.04 LTS

20.04 has still not reached EOL. The fixes seem to be compatible with it though.

eteran commented 7 months ago

Done!