Table of Contents

User Software :: CR-Tools :: Update of an installation

Once you have your initial CR-Tools installation, of course you would like to keep up with updates and other changes.

1. Retrieve the lasted version of the source code from the Subversion repository

Given your typical installation looks like this

lofarsoft
|-- build
|   `-- build.sh
|-- data
|-- devel_common
|-- doc
|-- external
|-- release
|   |-- bin
|   |-- include
|   `-- lib
`-- src
    |-- CR-Tools
    `-- DAL

you have two options:

  1. Directly run
    svn up

    from the top-level directory of your working copy of the code tree.

  2. Call the update target provided by the CMake-generated Makefile:
    cd build
    make update

Notes:

2. Initiate a new build and install

Simply run the build script to compile the latest version of the source code and install it:

cd build
./build.sh cr



User SoftwareCR-Tools