aboutsummaryrefslogtreecommitdiffstats
path: root/thirdparty/glog/README.md
diff options
context:
space:
mode:
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.