Versions Compared

Key

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

...

 

Linux Build Environment

SLAC

The default, shared Linux environment at SLAC can not be used as the version of gcc is too old.

On SLAC, a more recent environment can be setup and checked as follows.

Code Block
languagebash
titleSetup SLAC Build Environment
ssh rhel6-64
scl enable devtoolset-2
gcc --version

You should see the following gcc version now.

No Format
(GCC) 4.8.2 20140120 (Red Hat 4.8.2-15) Copyright (C) 2013 Free Software

This version of the compiler should support the C++11 standard.

Installing CMake

It is likely your system already has a recent enough version of CMake installed on it.

...