From 17b164feeec7785ee64e1ff403ca74f86bd8931c Mon Sep 17 00:00:00 2001 From: Rohit Goswami Date: Mon, 1 Jul 2024 02:15:38 +0000 Subject: [PATCH] MAINT: Cleanup and lint a bit --- driver/others/meson.build | 2 -- meson.build | 8 +++++++- 2 files changed, 7 insertions(+), 3 deletions(-) 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)