aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAlex Butum <alexbutum@linux.com>2014-07-08 12:50:38 +0300
committerAlex Butum <alexbutum@linux.com>2014-07-08 12:50:38 +0300
commita7650dc71342f65f4e09cbc6f37515fd31b05c95 (patch)
tree1a51398e88f46bd8a9a6969d53d27969c976a0d1 /README.md
parent36e415f5b825e18f2e4798c99db1ce48dd74381d (diff)
downloadcrow-a7650dc71342f65f4e09cbc6f37515fd31b05c95.tar.gz
crow-a7650dc71342f65f4e09cbc6f37515fd31b05c95.zip
Added build instructions for Ubuntu in README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 8 insertions, 5 deletions
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))