Tests/Find{BLAS,LAPACK}: Comment purpose of integer size fallback

This commit is contained in:
Brad King 2025-02-26 12:11:26 -05:00
parent 6ce494ed6d
commit dbbfec8712
2 changed files with 6 additions and 0 deletions

View File

@ -4,6 +4,9 @@ include(CTest)
find_package(BLAS REQUIRED)
# Configure the test case to match BLAS's integer type ABI.
# FindBLAS defaults to 32-bit integers if BLA_SIZEOF_INTEGER
# is not already set in the cache.
if(NOT BLA_SIZEOF_INTEGER)
set(BLA_SIZEOF_INTEGER 4)
endif()

View File

@ -4,6 +4,9 @@ include(CTest)
find_package(LAPACK REQUIRED)
# Configure the test case to match LAPACK's integer type ABI.
# FindLAPACK defaults to 32-bit integers if BLA_SIZEOF_INTEGER
# is not already set in the cache.
if(NOT BLA_SIZEOF_INTEGER)
set(BLA_SIZEOF_INTEGER 4)
endif()