fixed: hb-subset.cc -- compile error C1128: number of sections exceeded object file format limit

This commit is contained in:
璀境石 2024-03-19 09:17:42 +08:00 committed by Behdad Esfahbod
parent 51b775d38d
commit 3d455998bf

View file

@ -41,6 +41,7 @@ if cpp.get_argument_syntax() == 'msvc'
# NOTE: Only add warnings here if you are sure they're spurious
msvc_args = [
'/wd4244', # lossy type conversion (e.g. double -> int)
'/bigobj', # hb-subset.cc -- compile error C1128: number of sections exceeded object file format limit
cpp.get_supported_arguments(['/utf-8']), # set the input encoding to utf-8
]
add_project_arguments(msvc_args, language: ['c', 'cpp'])