Versions Compared

Key

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

...

Info
titleTroubleshooting
  • If you have problems during the building process, try starting over again with

    Code Block
    languagebash
    cd ~/dev/software/
    git pull 
    git clean -xdf 
    ./build_all.bash


  • If you ever run build_all.bash  as root , you might run into a lot of permission denied  errors. You need to delete all files and folders that were created and rerun as your usual user.

  • If you recieve an error like "dds/someheader.h" not found, run the command "rtiddsgen", which should build the neccesarry cpp-files
  • If you recieve an error regarding timing issues of unittests, run

    Code Block
    languagebash
    git clean -xdf
    ./build_all.bash

    again. This error occurs often in VM.

...