Skip to content
Evan Teran edited this page Aug 3, 2015 · 32 revisions

Note: If you prefer to use multiple cores when building, you can use the following instead of just make.

    NJOBS=$(getconf _NPROCESSORS_ONLN)
    make -j"${NJOBS:-3}"

For Ubuntu 15.04

sudo apt-get install \
    build-essential \
    libboost-dev \
    libqt5xmlpatterns5-dev \
    qtbase5-dev \
    qt5-default
    qmake -makefile DEFAULT_PLUGIN_PATH="/usr/local/lib64/edb/"
    make
    ./edb
    # sudo make INSTALL_ROOT=/usr/local/ install

For Ubuntu 13.10

sudo apt-get install \
    build-essential \
    libboost1.54-dev \
    libqt5xmlpatterns5-dev \
    qtbase5-dev \
    qt5-default

qmake
make
./edb
Clone this wiki locally