From: Eric Engestrom Date: Mon, 6 Nov 2017 16:49:27 +0000 (+0000) Subject: meson: switch default build type to debugoptimized X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5597f09c6a18a3ed2dd76657dd2e60806a6e4b2;p=mesa.git meson: switch default build type to debugoptimized As discussed in this thread: https://lists.freedesktop.org/archives/mesa-dev/2017-November/175104.html Cc: Emil Velikov Cc: Ilia Mirkin Cc: Michel Dänzer Cc: Christian Schmidbauer Cc: Eero Tamminen Cc: Ernst Sjöstrand Signed-off-by: Eric Engestrom Acked-by: Matt Turner Acked-by: Andres Rodriguez Acked-by: Emil Velikov Reviewed-by: Dylan Baker Reviewed-by: Chad Versace Tested-by: Chad Versace --- diff --git a/meson.build b/meson.build index 3ceaec483a3..6e9a799704e 100644 --- a/meson.build +++ b/meson.build @@ -24,7 +24,7 @@ project( version : '17.3.0-devel', license : 'MIT', meson_version : '>= 0.42', - default_options : ['c_std=c99', 'cpp_std=c++11'] + default_options : ['buildtype=debugoptimized', 'c_std=c99', 'cpp_std=c++11'] ) # Arguments for the preprocessor, put these in a separate array from the C and