MAINT: Rename to netlib_blas
This commit is contained in:
parent
8bb4bf3121
commit
58458a59d4
|
@ -275,7 +275,7 @@ if prec == 's' or build_single or build_all_prec
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Create the blas library
|
# Create the blas library
|
||||||
blas = library(_netlib_blas_name,
|
netlib_blas = library(_netlib_blas_name,
|
||||||
sources: _blas_netlib_srcs,
|
sources: _blas_netlib_srcs,
|
||||||
link_with: _allblas,
|
link_with: _allblas,
|
||||||
version: lapack_version,
|
version: lapack_version,
|
||||||
|
|
|
@ -48,7 +48,7 @@ foreach _test : _blas_noinput_test_array
|
||||||
test(_test.get(0),
|
test(_test.get(0),
|
||||||
executable(_test.get(1),
|
executable(_test.get(1),
|
||||||
sources : [_test.get(2)],
|
sources : [_test.get(2)],
|
||||||
link_with : blas,
|
link_with : netlib_blas,
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
endforeach
|
endforeach
|
||||||
|
@ -57,7 +57,7 @@ endforeach
|
||||||
# test(_test.get(0),
|
# test(_test.get(0),
|
||||||
# executable(_test.get(1),
|
# executable(_test.get(1),
|
||||||
# sources : [_test.get(2)],
|
# sources : [_test.get(2)],
|
||||||
# link_with : blas,
|
# link_with : netlib_blas,
|
||||||
# ),
|
# ),
|
||||||
# args: ['<', _test.get(3)],
|
# args: ['<', _test.get(3)],
|
||||||
# workdir : meson.source_root() + '/lapack-netlib/BLAS/TESTING/',
|
# workdir : meson.source_root() + '/lapack-netlib/BLAS/TESTING/',
|
||||||
|
|
|
@ -19,6 +19,6 @@ build_all_prec = get_option('build_all_prec')
|
||||||
use_c_lapack = get_option('use_c_lapack')
|
use_c_lapack = get_option('use_c_lapack')
|
||||||
|
|
||||||
# Sub-directories
|
# Sub-directories
|
||||||
subdir('BLAS') # Defines blas and _allblas
|
subdir('BLAS') # Defines netlib_blas and _allblas
|
||||||
subdir('INSTALL') # Defines _install_aux and _int_cpu_time
|
subdir('INSTALL') # Defines _install_aux and _int_cpu_time
|
||||||
subdir('SRC') # Defines lapack
|
subdir('SRC') # Defines netlib_lapack
|
||||||
|
|
Loading…
Reference in New Issue