Guest User

Untitled

a guest
Oct 27th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # RTT installation for ubuntu14.04 base on RTAI kernel
  2. ## install requirement (assuming that use the image I provided)
  3. apt-get install build-essential cmake libxerces-c2-dev omniorb libboost-all-dev doxygen
  4. ## get RTT source
  5. cd /usr/src
  6. git clone git://gitorious.org/orocos-toolchain/rtt.git
  7. ## add environment varible
  8. export RTAI_ROOT_DIR=/usr/realtime
  9. export RTAI_INCLUDE_DIR=$RTAI_ROOT_DIR/include
  10. export RTAI_LIBRARY=$RTAI_ROOT_DIR/lib
  11. *you can also add this varible to ~/.bashrc (or ~/.zshrc)*
  12. ## build
  13. cd /usr/src/rtt
  14. mkdir build && cd build
  15. cmake .. -DOROCOS_TARGET=lxrt
  16. make
  17. make install
  18.  
  19. enjoy it!
Add Comment
Please, Sign In to add comment