Installation Guide

All sources are available on our Sourceforge GIT repository.

1. Check out the sources
$ git clone git://git.code.sf.net/p/open-stream/code open-stream
2.Build
$ cd open-stream/
$ make
This will automatically

Troubleshooting

If the compilation stops, generally while compiling GCC on Ubuntu/Debian 64-bit platforms, it is generally due to path inconsistencies for headers and libraries. You need to install the gcc-multilib package and make sure that GCC can find the 64-bit libraries where it expects to find them, in /usr/lib64:
$ sudo apt-get install gcc-multilib
$ sudo ln -s /usr/lib/x86_64-linux-gnu/ /usr/lib64