1 /*
2  * Copyright (C) by Argonne National Laboratory
3  *     See COPYRIGHT in top-level directory
4  */
5 
6 #include "mpiimpl.h"
7 #include "mpichinfo.h"
8 /*
9    Global definitions of variables that hold information about the
10    version and patchlevel.  This allows easy access to the version
11    and configure information without requiring the user to run an MPI
12    program
13 */
14 const char MPII_Version_string[] = MPICH_VERSION;
15 const char MPII_Version_date[] = MPICH_VERSION_DATE;
16 const char MPII_Version_ABI[] = MPICH_ABIVERSION;
17 const char MPII_Version_configure[] = MPICH_CONFIGURE_ARGS_CLEAN;
18 const char MPII_Version_device[] = MPICH_DEVICE;
19 const char MPII_Version_CC[] = MPICH_COMPILER_CC;
20 const char MPII_Version_CXX[] = MPICH_COMPILER_CXX;
21 const char MPII_Version_F77[] = MPICH_COMPILER_F77;
22 const char MPII_Version_FC[] = MPICH_COMPILER_FC;
23 const char MPII_Version_custom[] = MPICH_CUSTOM_STRING;
24