-
-
Notifications
You must be signed in to change notification settings - Fork 341
Compiling (Ubuntu)
Evan Teran edited this page Aug 3, 2015
·
32 revisions
# if building from git source, make sure you used --recursive:
# git clone --recursive [email protected]:eteran/edb-debugger.git
# otherwise you will get non-obvious errors, like missing #include files.
sudo apt-get install build-essential \
libboost-dev \
libqt5xmlpatterns5-dev \
qtbase5-dev \
qt5-default
qmake -makefile DEFAULT_PLUGIN_PATH="/usr/local/lib64/edb/"
NJOBS=$(getconf _NPROCESSORS_ONLN)
make -j"${NJOBS:-3}"
./edb
# sudo make INSTALL_ROOT=/usr/local/ install
sudo apt-get install build-essential
sudo apt-get install libboost1.54-dev
sudo apt-get install libqt5xmlpatterns5-dev
sudo apt-get install qtbase5-dev
sudo apt-get install qt5-default
qmake
make
./edb