From 77ea1b2bf52cd1f102dfe2172d92f99967aeb6f1 Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 6 Jan 2025 04:08:54 -0700 Subject: [PATCH] meson: Use -O2 for now --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 818a341bd3..9fc822ca0e 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('qemu', ['c', 'cpp'], meson_version: '>=1.5.0', default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=c++17', 'b_colorout=auto', - 'b_staticpic=false', 'stdsplit=false', 'optimization=3', 'b_pie=true'], + 'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'], version: files('QEMU_VERSION')) add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)