MAINT,BLD: Be more sensitive to realkind
This commit is contained in:
parent
1295eea4ac
commit
b6d3a5e725
|
@ -259,10 +259,11 @@ _cblas3 = [
|
||||||
]
|
]
|
||||||
|
|
||||||
# Start making the blas target
|
# 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
|
_blas_netlib_srcs += _cblas1 + _cb1aux + _cblas2 + _cblas3
|
||||||
endif
|
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
|
_blas_netlib_srcs += _zblas1 + _zb1aux + _zblas2 + _zblas3
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@ if prec == 'd' or build_double or build_all_prec
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
if build_complex or build_all_prec
|
if prec == 'c' or build_complex or build_all_prec
|
||||||
_blas_noinput_test_array += [
|
_blas_noinput_test_array += [
|
||||||
['Test COMPLEX Level 1 BLAS', 'xblat1c', 'cblat1.f'],
|
['Test COMPLEX Level 1 BLAS', 'xblat1c', 'cblat1.f'],
|
||||||
]
|
]
|
||||||
|
@ -36,7 +36,7 @@ if build_complex or build_all_prec
|
||||||
]
|
]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if build_complex16 or build_all_prec
|
if prec == 'z' or build_complex16 or build_all_prec
|
||||||
_blas_noinput_test_array += [
|
_blas_noinput_test_array += [
|
||||||
['Test COMPLEX*16 Level 1 BLAS', 'xblat1z', 'zblat1.f'],
|
['Test COMPLEX*16 Level 1 BLAS', 'xblat1z', 'zblat1.f'],
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue