Browse Source

MAINT: Rename to netlib_blas

pull/4832/head
Rohit Goswami Mateusz Sokół 1 year ago
parent
commit
58458a59d4
3 changed files with 5 additions and 5 deletions
  1. +1
    -1
      lapack-netlib/BLAS/SRC/meson.build
  2. +2
    -2
      lapack-netlib/BLAS/TESTING/meson.build
  3. +2
    -2
      lapack-netlib/meson.build

+ 1
- 1
lapack-netlib/BLAS/SRC/meson.build View File

@@ -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,


+ 2
- 2
lapack-netlib/BLAS/TESTING/meson.build View File

@@ -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/',


+ 2
- 2
lapack-netlib/meson.build View File

@@ -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…
Cancel
Save