forked from Kudo/liblogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
53 lines (42 loc) · 2.01 KB
/
README.txt
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
liblogger : A logging framework for C / C++
---------------------------------------------------------
Developer : Vineeth Neelakant - nvineeth _at_ gmail _dot_ com
License : Apache Software License 2.0
Website : http://liblogger.sourceforge.net
---------------------------------------------------------
BUILDING - UNIX
----------------
liblogger uses scons (http://scons.org) build system.
You may need to install scons from the above system.
The sources are available under the folder src.
To build run "scons" from the folder src/build.
To see various build options, run the command "scons -h" under folder src/build.
ex : To build in release mode with O3 optimization, use "scons RELEASE=1"
ex : To cross compile for arm, use "scons CROSS_COMPILE=arm-linux- "
This generates :
* The shared library : liblogger.so
* The static library : liblogger.lib
* The test app, to run the test app :
$export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
$./logger_test
BUILDING - WINDOWS
----------------
For windows, the Visual Studio solution is provided under folder src/build/liblogger_win32/.
TEST APP
----------
The best way to understand the usage of liblogger is to go through the test apps :
* src/testapp
* src/testapp/file_logger_tests/
DOCUMENTATION
----------------
Documentation is provided at the website : http://liblogger.sourceforge.net,
alternatively you can build the documentation if you have doxygen installed.
Under the folder docs/ run command "gendoc.sh" and the html docs are generated in ./docs/docs/html
DOUBTS / BUGS / SUGGESTIONS
----------------------------
If you have any doubts,
* at the users mailing list : http://sourceforge.net/mail/?group_id=202343
* you can ask them at the discussion forum: http://sourceforge.net/forum/forum.php?forum_id=721800
Pls file the bug reports here: http://sourceforge.net/tracker/?group_id=202343&atid=981202
Pls file the feature requests and new ideas here: http://sourceforge.net/tracker/?group_id=202343&atid=981205
You can also mail the developer(s) at nvineeth _A_T_ gmail _D_O_T_ com