From a7650dc71342f65f4e09cbc6f37515fd31b05c95 Mon Sep 17 00:00:00 2001 From: Alex Butum Date: Tue, 8 Jul 2014 12:50:38 +0300 Subject: Added build instructions for Ubuntu in README.md --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a47140f..e4e9277 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,10 @@ -Crow -==== +# Crow Crow is C++ microframework for web. (inspired by Python Flask) (still in development, not completed yet) -Example -======= +## Example ```c++ @@ -69,5 +67,10 @@ int main() .multithreaded() .run(); } - ``` + +## How to Build + +### Ubuntu + sudo apt-get install libtcmalloc-minimal4 && sudo ln -s /usr/lib/libtcmalloc_minimal.so.4 /usr/lib/libtcmalloc_minimal.so + make -j$(($(grep -c '^processor' /proc/cpuinfo)+1)) -- cgit v1.2.3-54-g00ecf