From f7efa2858f6f2614f7d446c1d611cba3bdac8407 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Mon, 23 May 2022 14:01:36 +0200 Subject: [PATCH] pvr: do not use c_msvc_compat_args This code isn't MSVC compatible, as it uses VLAs (for instance). Until there's a reason to support MSVC, let's not even try. Otherwise, we make it harder than needed to add flags to make the MSVC compat flags more complete. Reviewed-by: Karmjit Mahil Reviewed-by: Jesse Natalie Part-of: --- src/imagination/rogue/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/rogue/meson.build b/src/imagination/rogue/meson.build index f3f6945..2431f4f 100644 --- a/src/imagination/rogue/meson.build +++ b/src/imagination/rogue/meson.build @@ -55,7 +55,7 @@ libpowervr_rogue = shared_library( inc_gallium, inc_gallium_aux, ], - c_args : [c_msvc_compat_args, no_override_init_args], + c_args : [no_override_init_args], gnu_symbol_visibility : 'hidden', dependencies : [idep_mesautil, idep_nir, dep_csbgen], install : true, -- 2.7.4