diff --git a/driver/others/meson.build b/driver/others/meson.build index 667b2facb..256d9c9d2 100644 --- a/driver/others/meson.build +++ b/driver/others/meson.build @@ -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'], diff --git a/meson.build b/meson.build index 2b4eae32f..17c151e66 100644 --- a/meson.build +++ b/meson.build @@ -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)