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
|
||||
|
||||
# Create the blas library
|
||||
blas = library(_netlib_blas_name,
|
||||
netlib_blas = library(_netlib_blas_name,
|
||||
sources: _blas_netlib_srcs,
|
||||
link_with: _allblas,
|
||||
version: lapack_version,
|
||||
|
|
|
@ -48,7 +48,7 @@ foreach _test : _blas_noinput_test_array
|
|||
test(_test.get(0),
|
||||
executable(_test.get(1),
|
||||
sources : [_test.get(2)],
|
||||
link_with : blas,
|
||||
link_with : netlib_blas,
|
||||
),
|
||||
)
|
||||
endforeach
|
||||
|
@ -57,7 +57,7 @@ endforeach
|
|||
# test(_test.get(0),
|
||||
# executable(_test.get(1),
|
||||
# sources : [_test.get(2)],
|
||||
# link_with : blas,
|
||||
# link_with : netlib_blas,
|
||||
# ),
|
||||
# args: ['<', _test.get(3)],
|
||||
# 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')
|
||||
|
||||
# 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('SRC') # Defines lapack
|
||||
subdir('SRC') # Defines netlib_lapack
|
||||
|
|
Loading…
Reference in New Issue