From 06bbc218e9a7cfb1d7254da16f88eebea2f04f29 Mon Sep 17 00:00:00 2001 From: Ryan Lucia Date: Sun, 6 Oct 2019 20:56:31 -0400 Subject: [PATCH] meson: temporarily disable c_std=c11 to fix Linux builds --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 5b91d5948..e5d321236 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,8 @@ project('Aegisub', ['c', 'cpp'], license: 'BSD-3-Clause', meson_version: '>=0.50.0', - default_options: ['c_std=c11', 'cpp_std=c++11', 'b_lto=true'], + # c_std=c11 should be here but it breaks Linux builds for some reason, needs investigation + default_options: ['cpp_std=c++11', 'b_lto=true'], version: '3.2.2') if host_machine.system() == 'windows'