1
0
mirror of https://github.com/odrling/Aegisub synced 2025-04-11 22:56:02 +02:00

meson: temporarily disable c_std=c11 to fix Linux builds

This commit is contained in:
Ryan Lucia 2019-10-06 20:56:31 -04:00 committed by odrling
parent fe1813ec03
commit 06bbc218e9

View File

@ -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'