/usr/bin/mpifort.mpich is in libmpich-dev 3.2-6build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | #! /bin/bash
#
# (C) 2006 by Argonne National Laboratory.
# See COPYRIGHT in top-level directory.
#
# mpifort
# Simple script to compile and/or link MPI programs.
# This script knows the default flags and libraries, and can handle
# alternative C compilers and the associated flags and libraries.
# The important terms are:
# includedir, libdir - Directories containing an *installed* mpich
# prefix, execprefix - Often used to define includedir and libdir
# FC - Fortran 90 compiler
# WRAPPER_FCFLAGS - Any special flags needed to compile
# WRAPPER_LDFLAGS - Any special flags needed to link
# WRAPPER_LIBS - Any special libraries needed in order to link
# FC_OTHER_LIBS - Yet more libraries, needed just with FC
#
# We assume that (a) the C compiler can both compile and link programs
#
# Handling of command-line options:
# This is a little tricky because some options may contain blanks.
#
# Special issues with shared libraries - todo
#
# --------------------------------------------------------------------------
# Set the default values of all variables.
#
# Directory locations: Fixed for any MPI implementation.
# Set from the directory arguments to configure (e.g., --prefix=/usr/local)
prefix=/usr
exec_prefix=/usr
sysconfdir=/etc/mpich
includedir=/usr/include/mpich
libdir=/usr/lib/x86_64-linux-gnu
modincdir=/usr/include/mpich
# Default settings for compiler, flags, and libraries
# Determined by a combination of environment variables and tests within
# configure (e.g., determining whehter -lsocket is needee)
FC="gfortran"
FCCPP=""
#
# Fortran 90 Compiler characteristics
FCINC="-I"
# f90modinc specifies how to add a directory to the search path for modules.
# Some compilers (Intel ifc version 5) do not support this concept, and
# instead need
# a specific list of files that contain module names and directories.
# The FCMODINCSPEC is a more general approach that uses <dir> and <file>
# for the directory and file respectively.
FCMODINC="-I"
FCMODINCSPEC=""
FCEXT="f90"
MPICH_VERSION="3.2"
enable_wrapper_rpath="no"
# How to pass a linker flag through the compiler.
wl="-Wl,"
# Static library suffix (normally "a").
libext="a"
# Shared library suffix (normally "so").
shlibext="so"
# Format of library name prefix.
libname_spec="lib\$name"
# Library names that the linker finds when passed -lNAME.
library_names_spec="\$libname\$shrext"
# Flag to hardcode $libdir into a binary during linking.
# This must work even if $libdir does not exist.
hardcode_libdir_flag_spec="\${wl}-rpath \${wl}\$libdir -Wl,--enable-new-dtags"
# Whether we need a single -rpath flag with a separated argument.
hardcode_libdir_separator=""
# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
# resulting binary.
hardcode_direct="no"
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
# resulting binary.
hardcode_minus_L="no"
# Internal variables
# Show is set to echo to cause the compilation command to be echoed instead
# of executed.
Show=
#
# End of initialization of variables
#---------------------------------------------------------------------
# Environment Variables.
# The environment variables MPICH_FC may be used to override the
# default choices.
# In addition, if there is a file $sysconfdir/mpifort-$FCname.conf,
# where FCname is the name of the compiler with all spaces replaced by hyphens
# (e.g., "fc -64" becomes "fc--64", that file is sources, allowing other
# changes to the compilation environment. See the variables used by the
# script (defined above)
# Added MPICH_FC_OLD, MPICH_FC can be used to prefix FC with external utility,
# e.g. setenv MPICH_FC 'eval linkcache $MPICH_FC_OLD'
if [ -n "$MPICH_FC" ] ; then
MPICH_FC_OLD="$FC"
FC="$MPICH_FC"
FCname=`echo $FC | sed 's/ /-/g'`
if [ -s $sysconfdir/mpifort-$FCname.conf ] ; then
. $sysconfdir/mpifort-$FCname.conf
fi
fi
# Allow a profiling option to be selected through an environment variable
if [ -n "$MPIFORT_PROFILE" ] ; then
profConf=$MPIFORT_PROFILE
fi
#
# ------------------------------------------------------------------------
# Argument processing.
# This is somewhat awkward because of the handling of arguments within
# the shell. We want to handle arguments that include spaces without
# loosing the spacing (an alternative would be to use a more powerful
# scripting language that would allow us to retain the array of values,
# which the basic (rather than enhanced) Bourne shell does not.
#
# Look through the arguments for arguments that indicate compile only.
# If these are *not* found, add the library options
linking=yes
allargs=("$@")
argno=0
cppflags=()
interlib_deps=yes
for arg in "$@" ; do
# Set addarg to no if this arg should be ignored by the C compiler
addarg=yes
case "$arg" in
# ----------------------------------------------------------------
# Compiler options that affect whether we are linking or no
-c|-S|-E|-M|-MM)
# The compiler links by default
linking=no
;;
# ----------------------------------------------------------------
# Options that control how we use mpifort (e.g., -show,
# -fc=* -config=*
-static)
interlib_deps=no
;;
-echo)
addarg=no
set -x
;;
-fc=*)
FC=`echo A$arg | sed -e 's/A-fc=//g'`
addarg=no
;;
-fc=*)
FC=`echo A$arg | sed -e 's/A-fc=//g'`
addarg=no
;;
-show)
addarg=no
Show=echo
;;
-config=*)
addarg=no
FCname=`echo A$arg | sed -e 's/A-config=//g'`
if [ -s "$sysconfdir/mpifort-$FCname.conf" ] ; then
. "$sysconfdir/mpifort-$FCname.conf"
else
echo "Configuration file mpifort-$FCname.conf not found"
fi
;;
-compile-info|-compile_info)
# -compile_info included for backward compatibility
Show=echo
addarg=no
;;
-link-info|-link_info)
# -link_info included for backward compatibility
Show=echo
addarg=no
;;
-v)
# Pass this argument to the compiler as well.
echo "mpifort for MPICH version $MPICH_VERSION"
# if there is only 1 argument, it must be -v.
if [ "$#" -eq "1" ] ; then
linking=no
fi
;;
-profile=*)
# Pass the name of a profiling configuration. As
# a special case, lib<name>.so or lib<name>.la may be used
# if the library is in $libdir
profConf=`echo A$arg | sed -e 's/A-profile=//g'`
addarg=no
# Loading the profConf file is handled below
;;
-nativelinking)
# Internal option to use native compiler for linking without MPI libraries
nativelinking=yes
addarg=no
;;
-help)
NC=`echo "$FC" | sed 's%\/% %g' | awk '{print $NF}' -`
if [ -f "$sysconfdir/mpixxx_opts.conf" ] ; then
. $sysconfdir/mpixxx_opts.conf
echo " -fc=xxx - Reset the native compiler to xxx."
else
if [ -f "./mpixxx_opts.conf" ] ; then
. ./mpixxx_opts.conf
echo " -fc=xxx - Reset the native compiler to xxx."
fi
fi
exit 0
;;
# The following are special args used to handle .F files when the
# Fortran compiler itself does not handle these options
-I*)
cppflags[${#cppflags}]="$arg"
;;
-D*)
cppflags[${#cppflags}]="$arg"
;;
*.F|*.F90|.fpp|.FPP)
# If FCCPP is not empty, then we need to do the following:
# If any input files have the .F or .F90 extension, then
# If FCCPP = false, then
# generate an error message and exit
# Use FCCPP to convert the file from .F to .f, using
# $TMPDIR/f$$-$count.f as the output file name
# Replace the input file with this name in the args
# This is needed only for very broken systems
#
if [ -n "$FCCPP" ] ; then
if [ "$FCCPP" = "false" ] ; then
echo "This Fortran compiler does not accept .F or .F90 files"
exit 1
fi
addarg=no
# Remove and directory names and extension
$ext=`expr "$arg" : '.*\(\..*\)'`
bfile=`basename $arg $ext`
#
TMPDIR=${TMPDIR:-/tmp}
# Make sure that we use a valid extension for the temp file.
tmpfile=$TMPDIR/f$$-$bfile.$FCEXT
if $FCCPP "${cppflags[@]}" $arg > $tmpfile ; then
# Add this file to the commandline list
count=`expr $count + 1`
allargs[${#allargs}]="$tmpfile"
rmfiles="$rmfiles $tmpfile"
else
echo "Aborting compilation because of failure in preprocessing step"
echo "for file $arg ."
exit 1
fi
fi
# Otherwise, just accept the argument
;;
# - end of special handling for .F files
esac
if [ $addarg = no ] ; then
unset allargs[$argno]
fi
# Some versions of bash do not accept ((argno++))
argno=`expr $argno + 1`
done
if [ $# -eq 0 ] ; then
echo "Error: Command line argument is needed!"
"$0" -help
exit 1
fi
# -----------------------------------------------------------------------
# Derived variables. These are assembled from variables set from the
# default, environment, configuration file (if any) and command-line
# options (if any)
#
# The library lib${MPILIBNAME}fort contains the f90-specific (or later) features,
# such as the module objects and the routines defined by them
# (MPI_SIZEOF is handled in lib${MPILIBNAME)fort, for example).
PROFILE_FOO=
# Handle the case of a profile switch
if [ -n "$profConf" ] ; then
profConffile=
if [ -s "$libdir/lib$profConf.a" -o -s "$libdir/lib$profConf.so" ] ; then
PROFILE_FOO="-l$profConf"
elif [ -s "$sysconfdir/$profConf.conf" ] ; then
profConffile="$sysconfdir/$profConf.conf"
elif [ -s "$profConf.conf" ] ; then
profConffile="$profConf.conf"
else
echo "Profiling configuration file $profConf.conf not found in $sysconfdir"
fi
if [ -n "$profConffile" -a -s "$profConffile" ] ; then
. $profConffile
fi
fi
# Construct the line to add the include directory (not all compilers
# use -I, unfortunately)
if [ -z "${FCINC}" ] ; then
# If there is no path, add a link to the mpif.h file.
# There *must* be a way to provide the path the any modules (there
# may be too many to link)
if [ ! -r mpif.h ] ; then
#echo "Adding a symbolic link for mpif.h"
trap "$Show rm -f mpif.h" 0
# This should really be the (related) f77includedir.
$Show ln -s ${includedir}/mpif.h mpif.h
# Remember to remove this file
rmfiles="$rmfiles mpif.h"
fi
FCINCDIRS=
else
# Normally, FCINC is just -I, but some compilers have used different
# command line arguments
FCINCDIRS=${FCINC}${includedir}
fi
# Handle the specification of the directory containing the modules
if [ -n "$FCMODINCSPEC" ] ; then
newarg=`echo A"$FCMODINCSPEC" | \
sed -e 's/^A//' -e 's%<dir>%'"$includedir%g" -e 's/<file>/mpi/g'`
FCMODDIRS="$newarg"
elif [ -n "$FCMODINC" ] ; then
FCMODDIRS="${FCMODINC}$modincdir"
fi
final_fcflags=" "
final_ldflags=" -Wl,-Bsymbolic-functions -Wl,-z,relro"
final_libs=""
if test "yes" = "no" -o "${interlib_deps}" = "no" ; then
final_ldflags="${final_ldflags} -Wl,-Bsymbolic-functions -Wl,-z,relro"
final_libs="${final_libs} -lpthread -lcr -lrt -lpthread "
fi
# A temporary statement to invoke the compiler
# Place the -L before any args incase there are any mpi libraries in there.
# Eventually, we'll want to move this after any non-MPI implementation
# libraries
if [ "$linking" = yes ] ; then
# Attempt to encode rpath info into the executable if the user has not
# disabled rpath usage and some flavor of rpath makes sense on this
# platform.
# TODO configure and config.rpath are computing more sophisticated rpath
# schemes than this simple one. Consider updating this logic accordingly.
if test "X$enable_wrapper_rpath" = "Xyes" ; then
# prepend the path for the shared libraries to the library list
eval rpath_flags=\"${hardcode_libdir_flag_spec}\"
else
rpath_flags=""
fi
if [ "$nativelinking" = yes ] ; then
$Show $FC $PROFILE_INCPATHS ${final_fcflags} ${final_ldflags} "${allargs[@]}"
rc=$?
else
$Show $FC $PROFILE_INCPATHS ${final_fcflags} ${final_ldflags} "${allargs[@]}" $FCINCDIRS $FCMODDIRS -L$libdir -lmpichfort $PROFILE_PRELIB $PROFILE_FOO $rpath_flags -lmpich $PROFILE_POSTLIB ${final_libs}
rc=$?
fi
else
$Show $FC $PROFILE_INCPATHS ${final_fcflags} "${allargs[@]}" $FCINCDIRS $FCMODDIRS
rc=$?
fi
if [ -n "$rmfiles" ] ; then
for file in $rmfiles ; do
objfile=`basename $file .f`
if [ -s "${objfile}.o" ] ; then
# Rename
destfile=`echo $objfile | sed -e "s/.*$$-//"`
mv -f ${objfile}.o ${destfile}.o
fi
rm -f $file
done
rm -f $rmfiles
fi
exit $rc
|