Elektra  0.8.19
README

This folder contains the core libraries of Elektra.

Content

Since 0.8.15 this folder contains multiple libraries:

overview_libs.png
Overview of Libraries

Libelektra

libelektra.so

Libelektra is now only a stub for legacy applications. It basically only links all previous libraries together. It should not be used for new applications or plugins.

Libfull

libelektra-full.so

Contains all sources of Elektra linked to together in one large library. Useful if you do not want dynamically loaded plugins. Should only be used on embedded systems (where whole application stack is done by you) and for tests.

Libstatic

libelektra-static.so

Contains all sources of Elektra linked to together in one large library. Useful if you need your application to be linked statically against Elektra. Should only be used on embedded systems (where whole application stack is done by you) and for tests.

Libkdb

libelektra-kdb.so
<kdb.h> (kdb*)

Contains kdb* symbols and applications should link against it.

Exported symbols

Exported symbols are defined in libelektra-symbols.map. The function names must confirm to this naming to conventions to be externally visible, e.g., for unit tests.

Please avoid exposing internal interfaces and instead use static methods whenever possible.