MAINT,BLD: Be more sensitive to realkind

This commit is contained in:
Rohit Goswami 2024-03-03 01:00:11 +00:00 committed by Mateusz Sokół
parent 1295eea4ac
commit b6d3a5e725
2 changed files with 5 additions and 4 deletions

View File

@ -259,10 +259,11 @@ _cblas3 = [
]
# Start making the blas target
if build_complex or build_all_prec
if prec == 'c' or build_complex or build_all_prec
_blas_netlib_srcs += _cblas1 + _cb1aux + _cblas2 + _cblas3
endif
if build_complex16 or build_all_prec
if prec == 'z' or build_complex16 or build_all_prec
_blas_netlib_srcs += _zblas1 + _zb1aux + _zblas2 + _zblas3
endif

View File

@ -26,7 +26,7 @@ if prec == 'd' or build_double or build_all_prec
endif
if build_complex or build_all_prec
if prec == 'c' or build_complex or build_all_prec
_blas_noinput_test_array += [
['Test COMPLEX Level 1 BLAS', 'xblat1c', 'cblat1.f'],
]
@ -36,7 +36,7 @@ if build_complex or build_all_prec
]
endif
if build_complex16 or build_all_prec
if prec == 'z' or build_complex16 or build_all_prec
_blas_noinput_test_array += [
['Test COMPLEX*16 Level 1 BLAS', 'xblat1z', 'zblat1.f'],
]