From b22723c24a6e27ba90b170268cb5dd1744461ce0 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Thu, 20 Feb 2020 12:22:09 +0800 Subject: Visual Studio builds: use -utf-8 if available This avoids the build from erroring out due to warning/error C4819 (Unicode handling issue in the compiler), which is likely to occur on Chinese, Japanese and Korean locales --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 6aebaed1d..411af6ec3 100644 --- a/meson.build +++ b/meson.build @@ -119,8 +119,8 @@ common_ldflags = [] if cc.get_id() == 'msvc' # For Visual Studio, just force-include msvc_reommended_pragmas.h # so that we silence unwanted noise and track potential issues - test_cflags = [] - add_project_arguments([ '-FImsvc_recommended_pragmas.h' ], language: 'c') + test_cflags = [ '-FImsvc_recommended_pragmas.h', '-utf-8' ] + add_project_arguments(cc.get_supported_arguments(test_cflags), language: 'c') elif cc.get_id() == 'gcc' or cc.get_id() == 'clang' test_cflags = [ '-Wpointer-arith', -- cgit v1.2.1