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
$ make
- download the sources of any missing libraries needed by OpenStream
- build and locally install these dependences
- build and locally install the compiler and runtime libraries in open-stream/install/, and
- build the OpenStream codes in the open-stream/examples/ directory
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
$ sudo ln -s /usr/lib/x86_64-linux-gnu/ /usr/lib64