Update README.md

This commit is contained in:
Gabi Melman 2015-04-11 18:46:05 +03:00
parent 7ec1c2ea54
commit 1a8f7ccf51
1 changed files with 9 additions and 5 deletions

View File

@ -5,17 +5,21 @@ Very fast, header only, C++ logging library.
## Install ## Install
Just copy the files to your build tree and use a C++11 compiler Just copy the files to your build tree and use a C++11 compiler
## Tested on: ## Supported Platforms
* Linux (32/64 bits)
* Windows (32/64 bits)
* MAC OSX
## Supported Compilers:
* gcc 4.8.1 and above * gcc 4.8.1 and above
* clang 3.5 (Linux and OSX) * clang 3.5 and above
* visual studio 2013 * visual studio 2013 and above
* mingw with g++ 4.9.x * mingw with g++ 4.9.x and above
##Features ##Features
* Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below). * Very fast - performance is the primary goal (see [benchmarks](#benchmarks) below).
* Headers only. * Headers only.
* No dependencies - just copy and use. * No dependencies - just copy and use.
* Cross platform - Linux / Windows on 32/64 bits.
* **new!** Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library. * **new!** Feature rich [call style](#usage-example) using the excellent [cppformat](http://cppformat.github.io/) library.
* ostream call style is supported too. * ostream call style is supported too.
* Extremely fast asynchronous mode (optional) - using lockfree queues and other tricks to reach millions of calls/sec. * Extremely fast asynchronous mode (optional) - using lockfree queues and other tricks to reach millions of calls/sec.