From 31d31154e44bbda3db5cf08264417d03d4c62057 Mon Sep 17 00:00:00 2001 From: "Balos, Cody, J" Date: Sun, 5 Nov 2023 21:35:24 -0800 Subject: [PATCH] remove sundials_lapack.h from install list --- scripts/shared | 1 - src/sundials/CMakeLists.txt | 5 ----- 2 files changed, 6 deletions(-) diff --git a/scripts/shared b/scripts/shared index 1347175464..ac10b9d0e9 100755 --- a/scripts/shared +++ b/scripts/shared @@ -139,7 +139,6 @@ $tar $tarfile $distrobase/include/sundials/sundials_dense.h $tar $tarfile $distrobase/include/sundials/sundials_direct.h $tar $tarfile $distrobase/include/sundials/sundials_futils.h $tar $tarfile $distrobase/include/sundials/sundials_iterative.h -$tar $tarfile $distrobase/include/sundials/sundials_lapack.h $tar $tarfile $distrobase/include/sundials/sundials_linearsolver.h $tar $tarfile $distrobase/include/sundials/sundials_logger.h $tar $tarfile $distrobase/include/sundials/sundials_math.h diff --git a/src/sundials/CMakeLists.txt b/src/sundials/CMakeLists.txt index 08afde2570..0a73f5666a 100644 --- a/src/sundials/CMakeLists.txt +++ b/src/sundials/CMakeLists.txt @@ -64,11 +64,6 @@ if(ENABLE_SYCL) list(APPEND sundials_HEADERS sundials_sycl_policies.hpp) endif() -# If Blas/Lapack support was enabled, add the Lapack interface headers -if(BUILD_SUNLINSOL_LAPACKBAND OR BUILD_SUNLINSOL_LAPACKDENSE) - list(APPEND sundials_HEADERS sundials_lapack.h) -endif() - # If enabled, add the XBraid interface header if(ENABLE_XBRAID) list(APPEND sundials_HEADERS sundials_xbraid.h)