Versions Compared

Key

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

...

  1. From the Cygwin shell, create a work directory for SLIC and its external dependencies.
    No Format
    cd /cygdrive/c
    mkdir sim
    cd sim
    
  2. Create the file setup.sh with the following contents. (We will be adding to this file as the installation proceeds.)
    No Format
    #!/bin/sh
    export sim_work=/cygdrive/c/sim
    
  3. Source the script to setup the work dir.
    No Format
    source setup.sh
    
Tip

Throughout the guide, any time a line is added to setup.sh, it is presumed that you also set this up in the current environment. Probably the easiest way to do this is adding to the script first and then (re)sourcing it.

Java

Java is required for installing LCIO.

...