From 2ee900546fd733374c99b4df3b9206655ab70ae0 Mon Sep 17 00:00:00 2001 From: Colomban Wendling Date: Tue, 31 Jan 2023 12:08:27 +0100 Subject: meson: Enable verbose mode support by default in line with Autoconf Verbose mode is not active by default when running Marco, but can be toggled dynamically to help debug issues, possibly as they happen. This should only be disabled for very performance-sensitive or size-sensitive builds, but not for the regular case where it can be very useful to debug a user issue. --- meson_options.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index c57ba6ec..5b7d75fc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,6 +1,6 @@ option('verbose-mode', - type: 'boolean', value: false, - description: 'verbose logging, for embedded/size-sensitive custom builds') + type: 'boolean', value: true, + description: 'verbose logging, disable for embedded/size-sensitive custom builds') option('sm', type: 'boolean', value: true, -- cgit v1.2.1