Skip to content
Evan Teran edited this page Dec 26, 2015 · 8 revisions

The full build and install process is very straight forward:

$ mkdir build
$ cd build
$ cmake -DCMAKE_INSTALL_PREFIX=/usr/local/ ..
$ make
$ make install
$ edb

By default, cmake will assign a value of /usr/local to CMAKE_INSTALL_PREFIX. So technically, the above parameter is redundant. However, if for example, you would like to change it to install in /usr/, simply change that line to read:

$ cmake -DCMAKE_INSTALL_PREFIX=/usr/ ..

Plugins will also be installed relative to the prefix in an appropriate sub directory. For example, /usr/lib64/edb on 64 bit machines.

Clone this wiki locally