From b050294635d5104decb6d0cbad271ba507ce2d4a Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Wed, 15 May 2019 14:26:11 +0100 Subject: [PATCH] meson buildtype - use plain not debug as debug will be insanely slow eina cow backtraces on write make this impractically slow to use debug. also the switch back to dev mode was not the reverse of switching to release mode. this fixes that. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 56701d0a21..bfe54aa274 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('efl', ['c','cpp'], version: '1.22.99', - default_options : ['cpp_std=c++11'], + default_options : ['buildtype=plain', 'cpp_std=c++11'], meson_version : '>=0.47' )