-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* require cmake version 3.5 * Find MPI in CMake so that setting CC is no longer required. * use CMAKE_SYSTEM_PROCESSOR instead of ARCH * ppc64lc clock changes from @markplagge 159311a * remove ARCH and CC from travis builds
- Loading branch information
Showing
6 changed files
with
138 additions
and
46 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
############################################################################### | ||
# Copyright (c) 2017, Lawrence Livermore National Security, LLC. | ||
# | ||
# Produced at the Lawrence Livermore National Laboratory | ||
# | ||
# LLNL-CODE-725085 | ||
# | ||
# All rights reserved. | ||
# | ||
# This file is part of BLT. | ||
# | ||
# For additional details, please also read BLT/LICENSE. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# * Redistributions of source code must retain the above copyright notice, | ||
# this list of conditions and the disclaimer below. | ||
# | ||
# * Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the disclaimer (as noted below) in the | ||
# documentation and/or other materials provided with the distribution. | ||
# | ||
# * Neither the name of the LLNS/LLNL nor the names of its contributors may | ||
# be used to endorse or promote products derived from this software without | ||
# specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
# ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, | ||
# LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY | ||
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | ||
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
# POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
############################################################################### | ||
|
||
################################ | ||
# MPI | ||
################################ | ||
|
||
find_package(MPI) | ||
message(STATUS "MPI C Compile Flags: ${MPI_C_COMPILE_FLAGS}") | ||
message(STATUS "MPI C Include Path: ${MPI_C_INCLUDE_PATH}") | ||
message(STATUS "MPI C Link Flags: ${MPI_C_LINK_FLAGS}") | ||
message(STATUS "MPI C Libraries: ${MPI_C_LIBRARIES}") | ||
|
||
message(STATUS "MPI CXX Compile Flags: ${MPI_CXX_COMPILE_FLAGS}") | ||
message(STATUS "MPI CXX Include Path: ${MPI_CXX_INCLUDE_PATH}") | ||
message(STATUS "MPI CXX Link Flags: ${MPI_CXX_LINK_FLAGS}") | ||
message(STATUS "MPI CXX Libraries: ${MPI_CXX_LIBRARIES}") | ||
|
||
message(STATUS "MPI Executable: ${MPIEXEC}") | ||
message(STATUS "MPI Num Proc Flag: ${MPIEXEC_NUMPROC_FLAG}") | ||
|
||
|
||
if (ENABLE_FORTRAN) | ||
# Determine if we should use fortran mpif.h header or fortran mpi module | ||
find_path(mpif_path | ||
NAMES "mpif.h" | ||
PATHS ${MPI_Fortran_INCLUDE_PATH} | ||
NO_DEFAULT_PATH | ||
) | ||
|
||
if(mpif_path) | ||
set(MPI_Fortran_USE_MPIF ON CACHE PATH "") | ||
message(STATUS "Using MPI Fortran header: mpif.h") | ||
else() | ||
set(MPI_Fortran_USE_MPIF OFF CACHE PATH "") | ||
message(STATUS "Using MPI Fortran module: mpi.mod") | ||
endif() | ||
endif() |