From 64d539d9d2709fd80b50273552d8982f1bd1e56a Mon Sep 17 00:00:00 2001 From: Richard Berger <richard.berger@temple.edu> Date: Tue, 14 Aug 2018 11:56:57 -0400 Subject: [PATCH] Disable sin/cos check in CMakeLists.txt since it breaks KOKKOS CUDA support --- cmake/CMakeLists.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 4ff160f010..58311928d9 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -496,12 +496,13 @@ include(CheckLibraryExists) if (CMAKE_VERSION VERSION_LESS "3.4") enable_language(C) # check_library_exists isn't supported without a c compiler before v3.4 endif() -foreach(FUNC sin cos) - check_library_exists(${MATH_LIBRARIES} ${FUNC} "" FOUND_${FUNC}_${MATH_LIBRARIES}) - if(NOT FOUND_${FUNC}_${MATH_LIBRARIES}) - message(FATAL_ERROR "Could not find needed math function - ${FUNC}") - endif(NOT FOUND_${FUNC}_${MATH_LIBRARIES}) -endforeach(FUNC) +# RB: disabled this check because it breaks with KOKKOS CUDA enabled +#foreach(FUNC sin cos) +# check_library_exists(${MATH_LIBRARIES} ${FUNC} "" FOUND_${FUNC}_${MATH_LIBRARIES}) +# if(NOT FOUND_${FUNC}_${MATH_LIBRARIES}) +# message(FATAL_ERROR "Could not find needed math function - ${FUNC}") +# endif(NOT FOUND_${FUNC}_${MATH_LIBRARIES}) +#endforeach(FUNC) list(APPEND LAMMPS_LINK_LIBS ${MATH_LIBRARIES}) ###################################### -- GitLab