/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
* (C) 2007 by Argonne National Laboratory.
* See COPYRIGHT in top-level directory.
*/
/* This file creates strings for the most important configuration options.
These are then used in the file src/mpi/init/initthread.c to initialize
global variables that will then be included in both the library and
executables, providing a way to determine what version and features of
MPICH were used with a particular library or executable.
*/
#ifndef MPICHINFO_H_INCLUDED
#define MPICHINFO_H_INCLUDED
#define MPICH_CONFIGURE_ARGS_CLEAN "@CONFIGURE_ARGS_CLEAN@"
#define MPICH_VERSION_DATE "@MPICH_RELEASE_DATE@"
#define MPICH_DEVICE "@DEVICE@"
#define MPICH_COMPILER_CC "@CC@ @CFLAGS@"
#define MPICH_COMPILER_CXX "@CXX@ @CXXFLAGS@"
#define MPICH_COMPILER_F77 "@F77@ @FFLAGS@"
#define MPICH_COMPILER_FC "@FC@ @FCFLAGS@"
#define MPICH_CUSTOM_STRING "@MPICH_CUSTOM_STRING@"
#define MPICH_ABIVERSION "@ABIVERSION@"
#endif