From 25835afd9ce3aa47045464be3d0756a5c786d752 Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Mon, 19 Jun 2023 12:48:28 +0800 Subject: [PATCH] MSVC Builds: Don't enable -utf-8 explicitly We already require a Meson release that enables -utf-8 by default, so we don't really need to explicitly enable it here. --- meson.build | 1 - 1 file changed, 1 deletion(-) diff --git a/meson.build b/meson.build index 040ae3b363..15b702a03c 100644 --- a/meson.build +++ b/meson.build @@ -252,7 +252,6 @@ if cc.get_id() == 'msvc' test_cflags = [ '-FI@0@/build-aux/msvc/msvc_recommended_pragmas.h'.format(meson.project_source_root()), '-D_USE_MATH_DEFINES', - '-utf-8', '-Zc:preprocessor' ] add_project_arguments(cc.get_supported_arguments(test_cflags), language: 'c')