Before you can use mpich, you must configure and make it. The configuration process analyzes your system and determines the correct options and settings; it also creates the Makefiles that are used to make mpich.
2. Invoke configure with the appropriate prefix:
% ./configure --prefix=/usr/local/mpich-1.2.6 |& tee c.logThis will configure mpich for the default device; this is usually the appropriate choice. Section Configure options discusses the options that can be given to configure to customize mpich.
The output of configure is piped to tee; this program both writes the output to the file specified by its argument (here c.log) and to standard output. If you have trouble with the configure or make step, the file c.log will help identify any problems.
3. Make mpich:
% make |& tee make.logThis may take a while, depending on the load on your system and on your file server, it may take anywhere from a few minutes to an hour or more.