From a324004fdb4537543d8f25f4a81e9d051292d970 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Mon, 25 May 2020 21:15:17 +0200 Subject: [PATCH] meson: don't set -Wno-missing-profile We don't do PGO by default --- meson.build | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meson.build b/meson.build index fbca1375..a61f964d 100644 --- a/meson.build +++ b/meson.build @@ -17,8 +17,7 @@ add_project_arguments( (is_debug_build ? ['-D_DEBUG'] : []) + cc.get_supported_arguments( ['-fstrict-aliasing', - '-Wstrict-aliasing', - '-Wno-missing-profile']), + '-Wstrict-aliasing']), language: 'c', )