This document provides shell-specific examples for csh and tcsh users. The main README.md focuses on bash/sh examples for simplicity.
For csh and tcsh:
./configure --prefix=/home/<USERNAME>/mpich-install |& tee c.txtFor csh and tcsh:
make |& tee m.txtIf there were problems, do a make clean and then run make again with V=1:
make V=1 |& tee m.txtFor csh and tcsh:
make install |& tee mi.txtFor csh and tcsh:
setenv PATH /home/<USERNAME>/mpich-install/bin:$PATHAdd this line to your startup script (.cshrc for csh, etc.).
- Csh-like shells (csh and tcsh) accept
|&for redirecting both stdout and stderr - Bourne-like shells (sh and bash) accept
2>&1 |for the same purpose - The
setenvcommand is used in csh/tcsh instead ofexportused in bash/sh