From 98d7493b2a0a0af626340baac2e3ce62b99fc704 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Fri, 8 Jan 2021 16:29:37 -0700 Subject: [PATCH] meson: bump std level to gnu11, since we use static_assert --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7afa67b..7d6ba18 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'libucontext', 'c', meson_version : '>=0.55.0', - default_options: ['c_std=gnu99', 'default_library=both'], + default_options: ['c_std=gnu11', 'default_library=both'], version : run_command('head', files('VERSION')).stdout() )