From 565a1c76d6ace8b95fa214ba4054663d26a94da4 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 4ed1910..259ddf4 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' ) -- 2.7.4