Elektra
0.8.19
|
For the base system you only need cmake and build-essential (make, gcc, some unix tools).
To build documentation you need doxygen, graphviz and ronn.
To build pdf documentation you need pdflatex with
texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra
For the debian package, please refer to debian/control (in the debian branch).
For the plugins, please refer to the README.md of the respective plugin.
Elektra uses cmake. Tested are cmake version 2.8.9 and version 3.0.2.
To configure Elektra graphically (with curses) run (..
belongs to command):
mkdir build && cd build && ccmake ..
and press 'c' to configure the cache (might be necessary multiple times). After applying the desired settings, press 'g' to generate the make file.
All options described here, can also be used with cmake rather than ccmake (..
does also here belong to the command):
mkdir build && cd build && cmake -D<OPTION1>=<VAR1> -D<OPTION2>=<VAR2> ..
For information what you can use as OPTION1
and OPTION2
, see above. Note: You have to enclose a value with quotes ""
if it contains a semicolon (;
). E.g.:
cmake -DPLUGINS="dump;resolver;yajl" ..
Some scripts in the folder of the same name may help you running cmake.
For supported compilers have a look at the automatic build farm on http://build.libelektra.org:8080/
Additionally, gcc 4.6 armhf is tested regularly.
Compiler | Version | Target |
---|---|---|
gcc | gcc (Debian 4.7.2-5) 4.7.2 | i386 |
gcc | gcc (Debian 4.7.2-5) 4.7.2 | amd64 |
gcc | gcc 4.8 | amd64 |
gcc | gcc 4.9 | amd64 |
gcc | (Debian 4.4.5-8) 4.4.5 | amd64 |
gcc | (Debian 4.4.5-8) 4.3 | amd64 |
gcc | 4.6 | armhf |
mingw | 4.6 | i386 |
clang | version 3.5.0-1~exp1 | x86_64-pc-linux-gnu |
icc | 14.0.2 20140120 | x86_64-pc-linux-gnu |
gcc/g++ | openbsd 4.9.3 (*) |
(*) OpenBSD ships an old version of GCC per default, which can not compile Elektra. A manual installation of egcc/eg++ is required. Note that not every OpenBSD mirror provides the eg++ package. Elektra builds are confirmed with egcc/eg++ 4.9.3 in OpenBSD 5.9. The packages are called gcc and g++. Compile with
CC=/usr/local/bin/egcc CXX=/usr/local/bin/eg++
.
To change the compiler, use cmake settings CMAKE_C_COMPILER
and CMAKE_CXX_COMPILER
.
To use gcc-4.3 for example
cmake -DCMAKE_C_COMPILER=gcc-4.3 -DCMAKE_CXX_COMPILER=g++-4.3 ..
To change the compiler with ccmake, you may need to toggle advanced options (key 't').
Some options, i.e. PLUGINS
, BINDINGS
and TOOLS
are either:
;
) (note that shells typically need ;
to be escaped)ALL
to include all elements (except elements with unfulfilled dependencies)NODE
to include all elements without dependencies-
) to exclude an elementExamples for this are especially in the subsection PLUGINS
below, but they work in the same fashion for BINDINGS
and TOOLS
.
Read about available plugins here.
Because the core of elektra is minimal, plugins are needed to actually read and write to configuration files (storage plugins), commit the changes (resolver plugin, also takes care about how the configuration files are named) and also do many other tasks related to configuration.
The minimal set of plugins you should add:
KDB_DEFAULT_STORAGE
to it.KDB_DEFAULT_RESOLVER
to it./sw/elektra/kdb/#0/current/plugins
to a value not containing sync (e.g. an empty value). See kdb-mount(1).By default nearly all plugins are added. Only experimental plugins will be omitted:
-DPLUGINS="ALL;-EXPERIMENTAL"
To add also experimental plugins, you can use:
-DPLUGINS=ALL
Note that plugins get dropped when dependencies are not satisfied. To add all plugins except some plugins you can use:
-DPLUGINS="ALL;-plugin1;-plugin2"
E.g. if you want all plugins except the jni plugin you would use:
-DPLUGINS="ALL;-jni"
To add all plugins not having additional dependencies (they need only POSIX), you can use
-DPLUGINS=NODEP
Note, that every infos/provides
and infos/status
field written uppercase can be used to select plugins that way. You also can combine any of these fields and add/remove other plugins to/from it, e.g. to include all plugins without deps, that provide storage (except yajl
) and are maintained, but not include all plugins that are experimental, you would use:
-DPLUGINS="NODEP;STORAGE;-yajl;MAINTAINED;-EXPERIMENTAL"
The inclusion is determined by following preferences:
-plugin
plugin
-CATEGORY
CATEGORY
Note, that changing PLUGINS
will not modifiy the defaults used after Elektra was installed. For this endeavour you need to change:
-DKDB_DEFAULT_RESOLVER=resolver
and
-DKDB_DEFAULT_STORAGE=dump
The default resolver and storage will write to KDB_DB_FILE
and KDB_DB_INIT
(for bootstrapping).
Obviously, you can pass the exact list of plugins you want, e.g.:
-DPLUGINS="resolver;sync;dump"
Some plugins are compile-time configurable. Then you can choose which features are compiled in or out. This is especially important in the bootstrapping phase, because then only the compiled in configuration applies. To compile-time-configure a plugin, you just pass a underscore (_
) and flags after the name of the plugin.
The resolver for example distinguish between 3 different kind of flags:
-DPLUGINS="resolver_baseflags_userflags_systemflags"
Following baseflags are available:
c
for debugging conflictsf
for enabling file lockingm
for enabling mutex lockingThe user flags are (the order matters!):
p
use passwd/ldap to lookup home directory using getpwuid_r
h
use the environment variable HOMEu
use the environment variable USERb
use the built-in default cmake variable KDB_DB_HOME
The system flags are (the order matters!):
x
use the environment variable XDG_CONFIG_DIRS
(:
are interpreted as part of filename, no searching is done!) This option is not recommended (unless for testing), because it allows users to fake system configuration.b
use the built-in default cmake variable KDB_DB_SYSTEM
/
) is chosen, the system flags are irrelevant and the path is taken as-is.E.g. one may use:
-DPLUGINS="resolver_lm_uhpb_b"
To add resolver_l_h_b
you need to specify
-DPLUGINS="resolver;resolver_l_h_b"
You can add resolver with any combination of the flags, even if they are not available in ALL
.
Tools are used to add extra functionality to Elektra. The flag used to specify which tools are compiled is -DTOOLS
, thus flag works similarly to the -DPLUGINS
flag, but is more limited in its functionality (which does not matter, because there are not so many tools).
To add all tools, you can use::
-DTOOLS=ALL
To add all tools except of race, you can use:
-DTOOLS="ALL;-race"
To specify specific tools you can use, e.g.:
-DTOOLS=qt-gui;kdb
Bindings are used in the same way as TOOLS
. For example you can use:
-DBINDINGS=ALL
Note that the same languages are sometimes available over GI and SWIG. In this case, the SWIG bindings are preferred. The SWIG executable may be specified with:
-DSWIG_EXECUTABLE=/usr/bin/swig3.0
If this option is not used, cmake will find the first occurrence of swig
in your environment's path. Even with ALL
GI bindings (deprecated) and gsettings (experimental) are not included. To include them, use:
-DBINDINGS="ALL;GI;gsettings"
Some bindings provide different APIs (and not a different language), e.g:
gsettings
INTERCEPT
with intercept_fs
and intercept_env
To not add such APIs, but only swig
bindings and cpp
, you can use:
-DBINDINGS="SWIG;cpp"
Debug
, Release
or RelWithDebInfo
See help bar at bottom of ccmake for that option or: http://www.cmake.org/Wiki/CMake_Useful_Variables
Only needed by Elektra developers. Make the library to output logging information. It is not recommended to use these options.
Build documentation with doxygen (API) and ronn (man pages).
As developer you should enable ENABLE_DEBUG
and ENABLE_LOGGER
. (By default they should be invisible!)
Then continue reading testing for further options.
CMAKE_INSTALL_PREFIX
defaults to /usr/local
. So by default most files will installed below /usr/local
. Exceptions to this are files handled by INSTALL_SYSTEM_FILES.
Edit that cache entry to change that behavior. Also called system prefix within the documentation.
If you want to create a package afterwards it is ok to use paths that you can write to (e.g. -DCMAKE_INSTALL_PREFIX=/home/username/
)
Lets you install libraries into architecture specific folder. E.g. for 32/64 bit systems you might install libraries under lib64
. Set LIB_SUFFIX
to 64
to achieve exactly that. So the system library folder will be CMAKE_INSTALL_PREFIX/lib64
then.
By default include folders will be installed below CMAKE_INSTALL_PREFIX/include/elektra
. This entry let you change the elektra. If the entry is empty, the include files will be installed directly to CMAKE_INSTALL_PREFIX/include
.
Similar to above, but with the plugins. Default is: CMAKE_INSTALL_PREFIX/lib${LIB_SUFFIX}/elektra
It can be also left empty to install plugins next to other libraries.
Specifies the root of the GoogleTest sources, to be used for some of the tests. A CMakeLists.txt
inside GTEST_ROOT
will be searched as way to detect a valid GoogleTest source directory. If it is empty (""
), an internal version of gtest will be used.
It is recommended that you browse through all of the options using ccmake. Afterwards press 'c' again (maybe multiple times until all variables are resolved) and then 'g' to generate. Finally press 'e' to exit.
Specifies that the build tools, i.e. elektra-export-symbols
and elektra-export-symbols
are installed (by default off). Is needed for cross-compilation.
Some of Elektras targets require to be installed into specific folders in the file system hierarchy to work properly.
This variable is enabled by default but requires the install target to have the rights to write into the corresponding folders. Set -DINSTALL_SYSTEM_FILES=OFF
if you do not need any of them.
If you do not have root rights you can copy them manually to your user folder.
Currently the installed system files are as following:
Module | Description | Install Path |
---|---|---|
bash-completion | bash tab auto completion file | completionsdir from pkg-config (*) |
zsh-completion | zsh tab auto completion file | /usr/share/zsh/vendor-completions |
GIR | introspection file for bindings | INTROSPECTION_GIRDIR from pkg-config |
GSettings | GSettings backend module | GIO_MODULE_DIR from pkg-config |
(*) Or
/usr/share/bash-completion/completions
as fallback.
In order to keep the binaries as small as possible this flag allows to trade memory for speed.
To build the source use:
make
You can pass:
-j
for parallel buildsVERBOSE=1
to see the invocations of the compilerContinue by reading INSTALL.
You can build Elektra using Code::Blocks under Gentoo:
Precondition: Make sure you have a compiler, xml2 (for kdb tool) and xsl (see later) installed. cmake configure will help you with that, it will make sure you don't forget something essential.
For Most Linux system all you have to do is open up a console and
mkdir build cd build cmake .. -G 'CodeBlocks - Unix Makefiles' make package
Note 1: You can use other editor if you like just type cmake at the console to get a list of option you can pass to cmake as long as well as a list of what code editor project cmake can create.
Note 2: For Unix if you have nCurses install you can run ccmake to set important option after running cmake like to enable debug symbol.
Note 3: for Gentoo is recommend to emerge sys-apps/lsb-release to name the package right even thou not required.
If you get errors that libelektra-resolver.so
or libelektra-storage.so
are missing, or the links do not work, you can use as workaround:
cmake -DBUILD_SHARED=OFF -DBUILD_FULL=ON ..
This issue was reported for:
make run_all
)