MAINT: Cleanup and lint a bit

This commit is contained in:
Rohit Goswami 2024-07-01 02:15:38 +00:00 committed by Mateusz Sokół
parent efe87a3f5b
commit 17b164feee
2 changed files with 7 additions and 3 deletions

View File

@ -72,8 +72,6 @@ endforeach
# Create the static libraries from the configurations
others_libs = []
foreach conf : others_confs
message(conf['name'])
message(conf)
others_libs += [static_library(
conf['name'],
conf['src'],

View File

@ -446,5 +446,11 @@ subdir('driver/others')
subdir('kernel')
_openblas = static_library('openblas',
link_whole: [ _interface, _l2_driver, _l3_driver, _others, _kern ],
link_whole: [
_interface,
_l2_driver,
_l3_driver,
_others,
_kern,
],
install: true)