aboutsummaryrefslogtreecommitdiffstats
path: root/thirdparty/glog/README.md
diff options
context:
space:
mode:
authorYalei Wang <william.wangyalei@huawei.com>2018-03-09 11:04:03 +0800
committerYalei Wang <william.wangyalei@huawei.com>2018-03-09 11:08:49 +0800
commit71e33ec17c12e6ca43f149215ca05fc9d8b1d5a9 (patch)
tree0156b92e35311499b75ba21d5b547b47b10061a9 /thirdparty/glog/README.md
parent71a4e2f34afa8018426f0e830050e50a1de6d375 (diff)
Add some third-party src code for DMM
glog-0.3.4 is necessary for the DMM project. Change-Id: Id42f7370ebaff0e584a00d57d66bca98db8004e1 Signed-off-by: Yalei Wang <william.wangyalei@huawei.com>
Diffstat (limited to 'thirdparty/glog/README.md')
-rw-r--r--thirdparty/glog/README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/thirdparty/glog/README.md b/thirdparty/glog/README.md
new file mode 100644
index 0000000..a58d38f
--- /dev/null
+++ b/thirdparty/glog/README.md
@@ -0,0 +1,25 @@
+This repository contains a C++ implementation of the Google logging
+module. Documentation for the implementation is in doc/.
+
+See INSTALL for (generic) installation instructions for C++: basically
+ cd ./glog-0.3.3
+ ./configure && make && make install
+
+For RTOS 32 bit:
+ cd ./glog-0.3.3
+ ./configure CXXFLAGS=-m32 && make && make install
+
+Or, you can use automatic script:
+ sh build_for_ci.sh
+
+and you can collect the latest lib & includes:
+ sh collect.sh
+
+you can find them in glog/lib & glog/include, moreover path then to glog.tar.gz
+
+Add feature:
+ 1. Support custom log, header file reference: nstack_glog_in.h;
+ 2. Provide a C interface to invoke, header file reference: nstack_glog.ph;
+ 3. Add the Debug level Release version, actually same to the INFO format log;
+ 4. Provide dynamically print ,adjust the log level, use NSTACK_LOG_LEVEL_ENABLE=[DEBUG/INFO/WARNING/ERROR/FATAL] , and first need use glogInit(char *param) and glogLevelSet(int logLevel)default is INFO level.
+ 5. Fix bug: twice Init & shutdown.