From 749e2754c83583e51034da09d3581af0f8d9e1a3 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Sun, 2 Aug 2020 12:21:51 +0430 Subject: [PATCH] [meson] remove useless note about -fvisibility-inlines-hidden It was put there as current situation of autotools but msys2 is ok with the flag, if something like is needed for other it can handled as a local patch. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c87f02c31..534ac1683 100644 --- a/meson.build +++ b/meson.build @@ -45,7 +45,7 @@ add_project_arguments(cpp.get_supported_arguments([ '-fno-rtti', '-fno-exceptions', '-fno-threadsafe-statics', - '-fvisibility-inlines-hidden', # maybe shouldn't be applied for mingw + '-fvisibility-inlines-hidden', ]), language: 'cpp') if host_machine.cpu_family() == 'arm' and cpp.alignment('struct { char c; }') != 1