Commit Graph

28 Commits

Author SHA1 Message Date
Amnon Heiman
5002f0f10e README: boost is needed for ubuntu compilation 2015-01-08 16:44:59 +02:00
Pekka Enberg
0a12cb6d65 README: Add libpciaccess-devel package to pre-requisites
It's needed on Fedora to build Seastar.

Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
2014-12-11 14:15:18 +02:00
Shlomi Livne
2f5644db1b Update README with additional instruction for running DPDK 2014-12-08 16:11:22 +02:00
Nadav Har'El
e1887713be Add missing Ubuntu package to README
Since recently, we also need the "libcrypto++-dev" package to compile
Seastar (libcrypto++ used by the TCP sequence number randomization...).

Signed-off-by: Nadav Har'El <nyh@cloudius-systems.com>
2014-11-30 18:25:32 +02:00
Vlad Zolotarov
857719556a README.md: Added a DPDK related chapter
Signed-off-by: Vlad Zolotarov <vladz@cloudius-systems.com>
2014-11-30 12:14:58 +02:00
Asias He
fecf47b50a tcp: Defending against sequence number attacks
This patch implements initial sequence number generation algorithm per
RFC6528.
2014-11-26 12:34:16 +02:00
Nadav Har'El
63fb31a8be README: another missing package
We use "-lpciaccess", so need to install libpciaccess-dev on Ubuntu

Signed-off-by: Nadav Har'El <nyh@cloudius-systems.com>
2014-11-10 16:39:15 +02:00
Nadav Har'El
4298ad2a3c README: explain how to install missing pieces on Ubuntu 12.04
Say which prerequisites to install on Ubuntu 12.04, and how to set up
gcc 4.9 side-by-side with the existing gcc 4.8 (without harming the
existing gcc 4.8 installation).

Signed-off-by: Nadav Har'El <nyh@cloudius-systems.com>
2014-11-10 16:06:46 +02:00
Nadav Har'El
e4cd6cc786 New requirements for README.md
Unfortunately, we have two new non-obvious prerequisites: numactl and hwloc.
List them in README.md.

Signed-off-by: Nadav Har'El <nyh@cloudius-systems.com>
2014-10-13 15:51:37 +03:00
Avi Kivity
0019c858a6 README: remove gperftools, unneeded 2014-10-05 20:05:41 +03:00
Nadav Har'El
d08b1dcacd README: say you need to run ./configure.py once
Add to the README the instruction to run "./configure.py" once.
If you don't, ninja-build will not work because the build.ninja
file will be missing.

Signed-off-by: Nadav Har'El <nyh@cloudius-systems.com>
2014-10-05 09:48:56 +03:00
Avi Kivity
9cbd099fe5 README, Dockerfile: update for ragel 2014-09-30 09:34:32 +03:00
Avi Kivity
ac7b3921f8 README: fix typos in future introduction 2014-09-25 17:58:07 +03:00
Avi Kivity
5c7df1bebc README: update wrt the disappearance of Makefile 2014-09-25 17:57:08 +03:00
Gleb Natapov
588fe22a8b README: add libasan to prerequisites 2014-09-21 13:39:48 +03:00
Pekka Enberg
698d35da2b Dockerize development environment
Add a Dockerfile that can be used to build a development environment for
Seastar. This is useful for people such as myself who don't want to
install packages from Rawhide on my main development machine.

Steps to use it on Fedora:

1. Install Docker: http://docs.docker.com/installation/fedora/

  $ sudo yum install docker-io

  $ sudo systemctl start docker

  $ sudo systemctl enable docker

  [ Note: I had to edit /etc/sysconfig/docker to disable SELinux support
    because I use BTRFS. ]

2. Build a Docker image:

  $ docker build -t seastar-dev .

3. Launch a Docker instance:

  [ Seastar git repository is located in $HOME/seastar on the host. ]

  $ docker run -v $HOME/seastar/:/seastar -i -t seastar-dev /bin/bash

4. Build Seastar:

  $ cd /seastar
  $ make

5. Run an application:

  $ ./build/release/apps/httpd/httpd

Signed-off-by: Pekka Enberg <penberg@cloudius-systems.com>
2014-09-19 12:10:10 +03:00
Avi Kivity
a1bbe48570 README: document libubsan requirement 2014-09-19 10:02:59 +03:00
Avi Kivity
e56c54c55b build: switch to ninja
This makes it saner to integrate code generators, plus it's cool.
2014-09-18 17:22:58 +03:00
Avi Kivity
e7c470c5c7 readme: fix loop example
The termination condition must not chain the
tail call, or we go into an infinite loop.

Noted by Gleb.
2014-09-18 15:32:08 +03:00
Avi Kivity
82922fb6ff README: cosmetics 2014-09-16 19:44:21 +03:00
Raphael S. Carvalho
efa0a124a1 Add building instructions section to README file
Signed-off-by: Raphael S. Carvalho <raphaelsc@cloudius-systems.com>
2014-09-16 19:42:05 +03:00
Avi Kivity
32bfefa6b9 README: add section about exception handling 2014-09-16 19:26:53 +03:00
Avi Kivity
fd8034ac94 README: explain what happens under the hood 2014-09-14 20:03:27 +03:00
Avi Kivity
9553ef779f README: fix typo 2014-09-12 23:18:34 +03:00
Avi Kivity
fbf043bf07 More markdown fixes, yuch 2014-09-11 20:25:02 +03:00
Avi Kivity
e43299463f Fix github-flavored markdown 2014-09-11 20:20:27 +03:00
Avi Kivity
2310354c24 Convert to github-flavored markdown 2014-09-11 20:19:06 +03:00
Avi Kivity
178aa39d32 Add README 2014-09-11 20:12:27 +03:00