Can meson configure be used to disable the debug flag? #12359
-
I could not find a way in the documentation. Other options can be set, for example, by --optimization=0. The only way I have found to set the debug flag to false is to configure the buildtype as plain. |
Beta Was this translation helpful? Give feedback.
Answered by
eli-schwartz
Oct 11, 2023
Replies: 1 comment 1 reply
-
I would suggest using the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
akumbera
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would suggest using the
-Ddebug=false
form, the-D
option sets a builddir configuration option whereas--opt
is a small syntactic sugar meant to resemble autotools./configure
for builtin options only.