configure_feature(KOKKOS)
-
#
# DEAL_II_WITH_KOKKOS is always required.
#
+
if(NOT DEAL_II_WITH_KOKKOS)
if(DEAL_II_FEATURE_AUTODETECTION)
feature_error_message("KOKKOS")
)
endif()
endif()
+
+#
+# Sanity check: Make sure we do not accidentally end up using bundled
+# Kokkos with Trilinos and PETSc built against an external Kokkos library.
+# We should have never gotten into this situation. So all we can do now is
+# to issue a FATAL_ERROR.
+#
+
+if(DEAL_II_FEATURE_KOKKOS_BUNDLED_CONFIGURED AND DEAL_II_WITH_TRILINOS AND TRILINOS_WITH_KOKKOS)
+ message(FATAL_ERROR "\n"
+ "Internal build system error: We have selected Trilinos shipping with (or "
+ "built against) an external Kokkos library, but ended up selecting our "
+ "bundled Kokkos library.\n\n"
+ )
+endif()
+
+if(DEAL_II_FEATURE_KOKKOS_BUNDLED_CONFIGURED AND DEAL_II_WITH_PETSC AND PETSC_WITH_KOKKOS)
+ message(FATAL_ERROR "\n"
+ "Internal build system error: We have selected PETSc built against an "
+ "external Kokkos library, but ended up selecting our bundled Kokkos "
+ "library.\n\n"
+ )
+endif()