memgraph/server/README.md

32 lines
379 B
Markdown
Raw Normal View History

2015-09-14 03:55:19 +08:00
## Dependencies
* https://github.com/libuv/libuv
```
2015-09-14 03:55:19 +08:00
sh autogen.sh
./configure
make
make check
make install
```
* https://github.com/joyent/http-parser
```
2015-09-14 03:55:19 +08:00
make
make install -stdlib=libstdc++ -lstdc++ (OSX)
make install
```
* https://github.com/c9s/r3
```
brew install r3 (OSX)
```
2015-09-14 03:55:19 +08:00
## Test compile
```
clang++ -std=c++11 test.cpp -o test.out -luv -lhttp_parser -I../
```