-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify behavior of gptl_avail for readability to be more like papi_avail
Change version number, and maintainer email Use AC_FC_MODULE_EXTENSION (normally "mod") Print warning when MPI not found
- Loading branch information
1 parent
107fc58
commit 1dd4d32
Showing
6 changed files
with
51 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
AC_PREREQ([2.59]) | ||
|
||
# Initialize autoconf. | ||
AC_INIT([GPTL], [8.0.2], [[email protected]]) | ||
AC_INIT([GPTL], [8.0.3], [[email protected]]) | ||
|
||
# Find out about the host we're building on. | ||
AC_CANONICAL_HOST | ||
|
@@ -337,6 +337,8 @@ if test "x$have_libmpi" = xyes; then | |
AC_DEFINE([MPI_STATUS_SIZE_IN_INTS], [5], [size of status in MPI]) | ||
AC_MSG_WARN([Could not determine MPI_STATUS_SIZE_IN_INTS -- GUESSING 5]) | ||
fi | ||
else | ||
AC_MSG_WARN([MPI_Init not found. GPTL MPI capabilities pr_summary and PMPI will NOT be enabled]) | ||
fi | ||
AM_CONDITIONAL([HAVE_LIBMPI], [test "x$have_libmpi" = xyes]) | ||
|
||
|
@@ -388,6 +390,9 @@ if test "x$fortran_support" = xyes; then | |
# Make sure this file is copied to build directories for tests to work. | ||
AC_CONFIG_LINKS([fortran/tests/gptlnl:fortran/tests/gptlnl]) | ||
|
||
# Discover the extension used for Fortran modules (will be stored in $FC_MODEXT) | ||
AC_FC_MODULE_EXTENSION() | ||
|
||
# Test OMP for Fortran and set flags accordingly, only if OMP support was enabled above for C | ||
# AC_OPENMP sets OPENMP_FCFLAGS | ||
have_fort_omp=no | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters