Skip to content

Commit

Permalink
meson: Enable verbose mode support by default in line with Autoconf
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
cwendling authored and raveit65 committed Apr 20, 2023
1 parent a7a1ca6 commit 2ee9005
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions meson_options.txt
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 2ee9005

Please sign in to comment.