mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
FindBLAS: Fix search for ACML when not in fallback paths
Avoid indexing an empty list. Fixes: #27141
This commit is contained in:
@@ -1122,9 +1122,9 @@ if(BLA_VENDOR MATCHES "ACML" OR BLA_VENDOR STREQUAL "All")
|
||||
else()
|
||||
file(GLOB _ACML_GPU_ROOT "/opt/acml*/GPGPUexamples")
|
||||
endif()
|
||||
list(GET _ACML_ROOT 0 _ACML_ROOT)
|
||||
list(GET _ACML_GPU_ROOT 0 _ACML_GPU_ROOT)
|
||||
if(_ACML_ROOT)
|
||||
list(GET _ACML_ROOT 0 _ACML_ROOT)
|
||||
list(GET _ACML_GPU_ROOT 0 _ACML_GPU_ROOT)
|
||||
get_filename_component(_ACML_ROOT ${_ACML_ROOT} PATH)
|
||||
if(_blas_sizeof_integer EQUAL 8)
|
||||
set(_ACML_PATH_SUFFIX "_int64")
|
||||
|
||||
Reference in New Issue
Block a user