Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Next, update your LD_LIBRARY_PATH to include /usr/local/lib. If you do not do so, you'll get cryptic errors claiming libramcloud.so cannot be found. It can, but some of its dependencies in /usr/local/lib cannot. Do the following:

No Format
echo "export LD_LIBRARY_PATH=/usr/local/lib" >> ~/.bashrc

export LD_LIBRARY_PATH=/usr/local/lib                           [or log out and back  in]

Interesting Targets

  • make - build the RAMCloud server and client software
    • Output obj.master/client/client, obj.master/server/server
    • Replace 'master' with the git local branch name you are on if it is not 'master'
  • make tests - build and run RAMCloud unit tests (requires CppUnit)
  • make check - currently runs Google style checker against files in the src directory; subject to check as style evolves

...