-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
380 lines (265 loc) · 12.5 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
Short Description
=================
log4cplus is a simple to use C++ logging API providing thread-safe,
flexible, and arbitrarily granular control over log management and
configuration. It is modeled after the Java log4j API.
Latest Project Information
==========================
The latest up-to-date information for this project can be found at
[log4cplus.sourceforge.net](http://log4cplus.sourceforge.net). Please
submit bugs, patches, feature requests, etc., there.
Tested on the following platforms
=================================
- Linux/AMD64 with GCC 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1)
- Linux/AMD64 with Sun C++ 5.12 Linux_i386 2011/11/16
- Linux/AMD64 with Clang version 3.0-6ubuntu3 (tags/RELEASE_30/final)
(based on LLVM 3.0)
- Linux/AMD64 with Intel(R) C++ Intel(R) 64 Compiler XE for
applications running on Intel(R) 64, Version 12.1 Build 20120410
- FreeBSD/AMD64 with GCC 3.4.6, 4.2.1 and 4.3.3
- Windows 7 with MS Visual Studio 2010 and 2012
- OpenSolaris 5.11/i386 with Sun C++ 5.10 SunOS_i386 128229-02
2009/09/21, with `-library=stlport4`
- Solaris 5.10/Sparc with Sun C++ 5.8 2005/10/13, with
`-library=stlport4` and with `-library=Cstd`.
- Solaris 5.10/Sparc with GCC 3.4.3 (csl-sol210-3_4-branch+sol_rpath)
- NetBSD 6.0/AMD64 with GCC 4.5.3 (NetBSD nb2 20110806)
- OpenBSD 5.2/AMD64 with GCC 4.2.1 20070719
- MacOS X 10.8 with GCC 4.2.1 (Apple Inc. build 5664)
- MacOS X 11.4.2 with GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM
build 2336.11.00)
- HP-UX B.11.11 with HP ANSI C++ B3910B A.03.80
(hppa2.0w-hp-hpux11.11)
Configure script options
========================
`--enable-debugging`
--------------------
This option is disabled by default. This option mainly affects GCC
builds but it also has some limitted effect on non-GCC builds. It
turns on debugging information generation, undefines `NDEBUG` symbol,
adds `-fkeep-inline-functions` and `-fstack-check` (GCC).
`--enable-warnings`
-------------------
This option is enabled by default. It adds platform / compiler
dependent warning options to compiler command line.
`--enable-so-version`
---------------------
This option is enabled by default. It enables SO version decoration
on resulting library file, e.g., the `.2.0.0` in
`liblog4cplus-1.2.so.2.0.0`.
`--enable-release-version`
--------------------------
This option is enabled by default. It enables release version
decoration on the resulting library file, e.g., the `-1.2` in
`liblog4cplus-1.2.so.2.0.0`.
`--enable-profiling`
--------------------
This option is disabled by default. This option adds profiling
information generation compiler option `-pg` to GCC and Sun CC /
Solaris Studio builds.
`--enable-threads`
------------------
This option is enabled by default. It turns on detection of necessary
compiler and linker flags that enable POSIX threading support.
While this detection usually works well, some platforms still need
help with configuration by supplying additional flags to the configure
script. One of the know deficiencies is Solaris Studio on Linux. See
one of the later note for details.
`--with-working-locale`
-----------------------
This is one of three locale and `wchar_t` <-> `char` conversion
related options. It is disabled by default.
It is know to work well with GCC on Linux. Other platforms generally
have lesser locale support in their implementations of the C++
standard library. It is known not to work well on any *BSD.
See also docs/unicode.txt.
`--with-working-c-locale`
-------------------------
This is second of `wchar_t` <-> `char` conversion related options. It
is disabled by default.
It is known to work well on most *NIX platforms, including recent Cygwin.
`--with-iconv`
--------------
This is third of `wchar_t` <-> `char` conversion related options. It is
disabled by default.
The conversion using iconv() function always uses `"UTF-8"` and
`"WCHAR_T"` as source/target encodings. It is known to work well on
platforms with GNU iconv. Different implementations of `iconv()`
might not support `"WCHAR_T"` encoding selector.
Either system provided `iconv()` or library provided `libiconv()` are
detected and accepted. Also both SUSv3 and GNU `iconv()` function
signatures are accepted.
`--with-qt`
-----------
This option is disabled by default. It enables compilation of a
separate shared library (liblog4cplusqt4debugappender) that implements
`Qt4DebugAppender`. It requires Qt4 and pkg-config to be installed.
Notes
=====
Cygwin/MinGW
------------
Some version of GCC (3.4.x and probably some of 4.x series too) on
Windows (both Mingw and Cygwin) produces lots of warnings of the form:
`warning: inline function 'void foo()' is declared as dllimport:
attribute ignored`
This can be worked around by adding `-Wno-attributes` option to GCC
command. Unfortunatelly, not all affected version of GCC have this
option.
Windows and TLS
---------------
log4cplus uses thread-local storage (TLS) for NDC, MDC and to optimize
use of some temporary objects. On Windows there are two ways to get
TLS:
(1) using `TlsAlloc()`, etc., functions
(2) using `__declspec(thread)`
While method (2) generates faster code, it has some limitations prior
to Windows Vista. If log4cplus.dll is loaded at run time using
`LoadLibrary()` (or as a dependency of such loaded library), then
accessing `__declspec(thread)` variables can cause general protection
fault (GPF) errors. This is because Windows prior to Windows Vista do
not extend the TLS for libraries loaded at run time using
LoadLibrary(). To allow using the best available method, log4cplus
enables the method (2) by checking `_WIN32_WINNT >= 0x0600` condition,
when compiling log4cplus targetted to Windows Vista or later.
Threads and signals
-------------------
log4cplus is not safe to be used from async signals' handlers. This
is a property of most threaded programmes in general. If you are
going to use log4cplus in threaded application and if you want to use
log4cplus from signal handlers then your only option is to block
signals in all threads but one that will handle all signals. On POSIX
platforms, this is possible using the `sigwait()` call. log4cplus
enables this approach by blocking all signals in any threads created
through its threads helpers.
IBM's XL C/C++ compiler
-----------------------
IBM's XL C/C++ compiler executable has [many variants][1]. To compile
log4cplus with threading support specify one of the compiler variants
that support threading using the `CXX` variable on configure script
command line. E.g.:
$ ../configure --enable-threads CXX=xlC_r
[1]: http://pic.dhe.ibm.com/infocenter/comphelp/v121v141/index.jsp?topic=%2Fcom.ibm.xlcpp121.aix.doc%2Fcompiler_ref%2Ftucmpinv.html
AIX reentrancy problem
----------------------
There appears to be a reentracy problem with AIX 5.3 and xlC 8 which
can result into a deadlock condition in some curcumstances. It is
unknown whether the problem manifests with other versions of either
the OS or the compiler, too. The problem was initially reported in a
bug report [#103][2].
The core of the problem is that IBM's/xlC's standard C++ IOStreams
implementation uses global non recursive lock to protect some of its
state. The application in the bug report was trying to do logging
using log4cplus from inside `overflow()` member function of a class
derived from `std::streambuf` class. log4cplus itself uses
`std::ostringstream`. This resulted into an attempt to recursivly
lock the global non recursive lock and a deadlock.
[2]: http://sourceforge.net/p/log4cplus/bugs/103/
Solaris / SunOS
---------------
Some older version of this operating system might have problems
linking log4cplus due to [missing `__tls_get_addr`][3] in their
unpatched state.
[3]: https://groups.google.com/d/msg/comp.unix.solaris/AAMqkK0QZ6U/zlkVKA1L_QcJ
Solaris Studio
--------------
Solaris Studio compilers' default standard C++ library is very
non-standard. It seems that it is not conforming enough in, e.g., Sun
C++ 5.12 Linux_i386 2011/11/16 (missing `std::time_t`, etc.), but it
works well enough on Solaris with Sun C++ 5.8 2005/10/13. Thus
log4cplus adds `-library=stlport4` to the `CXXFLAGS` environment
variable, unless a switch matching `-library=(stlport4|stdcxx4|Cstd)`
is already present there. If you want to override the default
supplied by log4cplus, just set it into `CXXFLAGS` on configure script
command line.
Solaris Studio supports the `__func__` symbol which can be used by
log4cplus to record function name in logged events. To enable this
feature, add `-features=extensions` switch to `CXXFLAGS` for configure
script. Subsequently, you will have to add this switch to your
application's build flags as well.
Solaris Studio on GNU/Linux
---------------------------
The autotools and our configure.ac combo does not handle Solaris
Studio compiler on Linux well enough and needs a little help with
configuration of POSIX threads:
$ COMMON_FLAGS="-L/lib/x86_64-linux-gnu/ \
-L/usr/lib/x86_64-linux-gnu/ -mt=yes -O"
$ ../configure --enable-threads=yes \
CC=/opt/solarisstudio12.3/bin/cc \
CXX=/opt/solarisstudio12.3/bin/CC \
CFLAGS="$COMMON_FLAGS" \
CXXFLAGS="$COMMON_FLAGS" \
LDFLAGS="-lpthread"
HP-UX with aCC
--------------
It is necessary to turn on C++98 mode of aCC by providing the `-AA` flag:
$ ../configure --enable-threds=yes CXXFLAGS="-AA"
Qt4 / Win32 / MSVC
------------------
In order to use log4cplus in Qt4 programs it is necessary to set
following option: `Treat WChar_t As Built in Type: No (/Zc:wchar_t-)`
Set this option for log4cplus project and `Qt4DebugAppender` project
in MS Visual Studio. Remember to use Unicode versions of log4cplus
libraries with Qt. It is also necessary to make clear distinction
between debug and release builds of Qt project and log4cplus. Do not
use log4cplus release library with debug version of Qt program or vice
versa.
For registering Qt4DebugAppender library at run-time call this
function: `log4cplus::Qt4DebugAppender::registerAppender()`
Add these lines to qmake project file for using log4cplus and
`Qt4DebugAppender`:
INCLUDEPATH += C:\log4cplus\include
win32 {
CONFIG(debug, debug|release) {
LIBS += -LC:\log4cplus\msvc10\Win32\bin.Debug_Unicode -llog4cplusUD
LIBS += -LC:\log4cplus\msvc10\Win32\bin.Debug_Unicode -llog4cplus-Qt4DebugAppender
} else {
LIBS += -LC:\log4cplus\msvc10\Win32\bin.Release_Unicode -llog4cplusU
LIBS += -LC:\log4cplus\msvc10\Win32\bin.Release_Unicode -llog4cplus-Qt4DebugAppender
}
}
Qt / GCC
--------
You might encounter the following error during compilation with
`--with-qt` option:
`qglobal.h:943: error: ISO C++ does not support 'long long'`
This is caused by `-pedantic` option that log4cplus adds to `CXXFLAGS`
when compiling with GCC. To work around this issue, add
`-Wno-long-long` GCC option to `CXXFLAGS`.
`LOG4CPLUS_*_FMT()` and UNICODE
-------------------------------
Beware, the `%s` specifier does not work the same way on *NIX as it
does on Windows with Visual Studio. With Visual Studio the `%s`
specifier changes its meaning conveniently by printing `wchar_t`
string when used with `wprintf()` and `char` strings when used with
`printf()`. On the other hand, *NIX keeps the meaning of printing
`char` strings when used with both `wprintf()` and `printf()`. It is
necessary to use `%ls` (C99) specifier or `%S` (SUSv2) specifier to
print `wchar_t` strings on *NIX.
The common ground for both platforms appears to be use of `%ls` and
`wchar_t` string to print strings with unmodified formatting string
argument on both *NIX and Windows. The conversion of `wchar_t` back
to `char` then depends on C locale.
C++11 support
-------------
log4cplus contains small amount of code that uses C++11 (ISO/IEC
14882:2011 standard) language features. C++11 features are used only
if C++11 support is detected during compile time. Compiling log4cplus
with C++11 compiler and standard library and using it with C++03
(ISO/IEC 14882:2003 standard) application is not supported.
Unsupported compilers
---------------------
log4cplus does not support too old or broken C++ compilers:
- Visual C++ prior to 7.1
- GCC prior to 3.2
- Older versions of Borland/CodeGear/Embarcadero C++ compilers
Unsupported platforms
---------------------
log4cplus requires some minimal set of C and/or C++ library
functions. Some systems/platforms fail to provide these functions and
thus log4cplus cannot be supported there:
- Windows CE - missing implementations of `<time.h>` functions
License
=======
This library is licensed under the Apache Public License 2.0 and two
clause BSD license. Please read the included LICENSE file for
details.