...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
The library has a separately compiled part which should be built as described in the Getting Started guide. One thing should be noted, though. If your application consists of more than one module (e.g. an exe and one or several dll's) that use Boost.Log, the library must be built as a shared object. If you have a single executable or a single module that works with Boost.Log, you may build the library as a static library.
The library supports a number of configuration macros:
Table 1.1. Configuration macros
Macro name |
Effect |
CMake notes |
---|---|---|
|
If defined in user code, the library will assume the binary is built as a dynamically loaded library ("dll" or "so"). Otherwise it is assumed that the library is built in static mode. This macro must be either defined or not defined for all translation units of user application that uses logging. This macro can help with auto-linking on platforms that support it. |
Defined automatically depending on |
|
Same as |
|
|
Affects compilation of both the library and user's code. This macro
is Windows-specific. Selects the target Windows version for various
Boost libraries, including Boost.Log. Code compiled for a particular
Windows version will likely fail to run on the older Windows versions,
but may improve performance because of using newer OS features.
The macro is expected to have an integer value equivalent to |
|
|
If defined, disables multithreading support. Affects the compilation of both the library and users' code. The macro is automatically defined if no threading support is detected. |
|
|
If defined, disables support for narrow character logging. Affects the compilation of both the library and users' code. |
|
|
If defined, disables support for wide character logging. Affects the compilation of both the library and users' code. |
|
|
This macro is only useful on Windows. It affects the compilation
of both the library and users' code. If defined, disables support
for the |
|
|
Affects only compilation of the library. If for some reason support for the native SysLog API is not detected automatically, define this macro to forcibly enable it. |
|
|
Affects only compilation of the library. If defined, the parsers for settings will be built without any default factories for filters and formatters. The user will have to register all attributes in the library before parsing any filters or formatters from strings. This can substantially reduce the binary size. |
|
|
Affects only compilation of the library. If defined, none of the facilities related to the parsers for settings will be built. This can substantially reduce the binary size. |
Disables compilation of the |
|
Affects only compilation of the library. If defined, the support for debugger output on Windows will not be built. |
|
|
Affects only compilation of the library. If defined, the support for Windows event log will not be built. Defining the macro also makes Message Compiler toolset unnecessary. |
|
|
Affects only compilation of the library. If defined, the support for syslog backend will not be built. |
|
|
Affects only compilation of the library. If defined, the support for interprocess queues will not be built. |
|
|
Affects only compilation of users' code. If defined, some deprecated shorthand macro names will not be available. |
Not a CMake configuration option. |
|
Affects only compilation of the library. This macro enables support for compiler intrinsics for thread-local storage. Defining it may improve performance of Boost.Log if certain usage limitations are acceptable. See below for more comments. |
|
|
Affects only compilation of the library. By defining one of these
macros the user can instruct Boost.Log to use |
Instead of definitng one of these macros, use |
You can define configuration macros in the bjam
command line, like this:
bjam --with-log variant=release define=BOOST_LOG_WITHOUT_EVENT_LOG define=BOOST_USE_WINAPI_VERSION=0x0600 stage
With CMake, the configuration macros can be specified as CMake options in the command line like this:
cmake .. -DCMAKE_BUILD_TYPE=Release -DBOOST_LOG_WITHOUT_EVENT_LOG=On
However, it may be more convenient to define configuration macros in the "boost/config/user.hpp" file in order to automatically define them both for the library and user's projects. If none of the options are specified, the library will try to support the most comprehensive setup, including support for all character types and features available for the target platform.
The logging library uses several other Boost libraries that require building too. These are Boost.Filesystem, Boost.System, Boost.DateTime, Boost.Thread and in some configurations Boost.Regex. Refer to their documentation for detailed instructions on the building procedure.
One final thing should be added. The library requires run-time type information (RTTI) to be enabled for both the library compilation and user's code compilation. Normally, this won't need anything from you except to verify that RTTI support is not disabled in your project.
Many widely used compilers support builtin intrinsics for managing thread-local storage, which is used in several parts of the library. This feature is also included in the C++11 standard. Generally, these intrinsics allow for a much more efficient access to the storage than any surrogate implementation, be that Boost.Thread or even native operating system API. However, this feature has several caveats:
The library provides the BOOST_LOG_USE_COMPILER_TLS
configuration macro that allows to enable the use of this feature, which
will improve the library performance at the cost of these limitations:
Note that the BOOST_LOG_USE_COMPILER_TLS
macro only controls use of TLS in Boost.Log but not in other libraries used
by Boost.Log. For example, Boost.ASIO
uses compiler-supplied TLS by default. In order to build Boost.Log binaries
completely free from use of compiler-supplied TLS, this feature has to be
disabled in those other libraries as well (in case of Boost.ASIO
this can be achieved by defining BOOST_ASIO_DISABLE_THREAD_KEYWORD_EXTENSION
when building and using Boost).
Also note that enabling builtin compiler support for TLS does not remove the dependency on Boost.Thread or lower level OS threading primitives, including those implementing TLS. The purpose of using compiler intrinsics for TLS is better performance rather than reducing dependencies.
wchar_t
support
Some compilers, most notably MSVC, have an option to disable the native
wchar_t
type, emulating it with
a typedef for one of the standard integral types. From the C++ language perspective
this behavior is not conforming but it may be useful for compatibility with
some legacy code which is difficult to update.
By default, Boost (and Boost.Log being part of it) is built with native
wchar_t
enabled. At the time
of this writing, user will have to modify Boost.Build to enable the emulation
mode. It is possible to build Boost.Log in this mode, but there are several
caveats that have to be kept in mind:
wchar_t
is undistinguishable from one of the integer types, certain parts of
the library may behave differently from the normal mode with native
wchar_t
. In particular,
wide-character literals may be rejected or formatted differently.
Because of that using the emulation mode is discouraged and should be avoided. In future releases of the library its support may be removed completely.
In order to compile Boost.Log with event log support on Windows using CMake,
the initial CMake configuration should be performed with resource (rc.exe
or windres.exe
) and message compiler tools (mc.exe
or windmc.exe
) available in PATH
environment variable. With MSVC, it is recommended to run CMake in the Visual
Studio command line or otherwise ensure that Windows SDK environment variables
are set.
Alternatively, users may set RC
and MC
environment variables
to paths of the resource and message compiler executables, respectively,
or set CMAKE_RC_COMPILER
and CMAKE_MC_COMPILER
CMake
options to the corresponding paths in the command line.