MAINT: Cleanup and lint a bit
This commit is contained in:
parent
efe87a3f5b
commit
17b164feee
|
@ -72,8 +72,6 @@ endforeach
|
||||||
# Create the static libraries from the configurations
|
# Create the static libraries from the configurations
|
||||||
others_libs = []
|
others_libs = []
|
||||||
foreach conf : others_confs
|
foreach conf : others_confs
|
||||||
message(conf['name'])
|
|
||||||
message(conf)
|
|
||||||
others_libs += [static_library(
|
others_libs += [static_library(
|
||||||
conf['name'],
|
conf['name'],
|
||||||
conf['src'],
|
conf['src'],
|
||||||
|
|
|
@ -446,5 +446,11 @@ subdir('driver/others')
|
||||||
subdir('kernel')
|
subdir('kernel')
|
||||||
|
|
||||||
_openblas = static_library('openblas',
|
_openblas = static_library('openblas',
|
||||||
link_whole: [ _interface, _l2_driver, _l3_driver, _others, _kern ],
|
link_whole: [
|
||||||
|
_interface,
|
||||||
|
_l2_driver,
|
||||||
|
_l3_driver,
|
||||||
|
_others,
|
||||||
|
_kern,
|
||||||
|
],
|
||||||
install: true)
|
install: true)
|
||||||
|
|
Loading…
Reference in New Issue