/etc/mpich2/mpicc.conf is in libmpich2-dev 1.4.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
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 | #! /bin/sh
#
# This file contains configuration information for mpicc. This is
# essentially just the variable-initialization part of mpicc.
# --------------------------------------------------------------------------
# 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
prefix=/usr
exec_prefix=/usr
sysconfdir=/etc/mpich2
includedir=/usr/include/mpich2
libdir=/usr/lib
# 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)
CC="gcc"
CFLAGS=" "
CPPFLAGS="-D_FORTIFY_SOURCE=2 "
LDFLAGS=" -Wl,-Bsymbolic-functions -Wl,-z,relro "
LIBS="-lopa -lmpl -lrt -lcr -lpthread "
MPILIBNAME="mpich"
PMPILIBNAME="pmpich"
NEEDSPLIB="no"
# MPICH2_VERSION is the version of the MPICH2 library that mpicc is intended for
MPICH2_VERSION="1.4.1"
|