From: Martin Storsjö Date: Thu, 20 Mar 2025 21:27:05 +0000 (+0200) Subject: ld/PE: Add another mingw UCRT library name to the autoexport exclusion list X-Git-Tag: binutils-2_45~1020 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ac0e2868057515f860f0a27a17449ef49655a6a;p=thirdparty%2Fbinutils-gdb.git ld/PE: Add another mingw UCRT library name to the autoexport exclusion list Since 2020, mingw-w64 provides a C runtime import library variant named "libucrtapp" too, exclude this one from autoexports like the others. Signed-off-by: Martin Storsjö --- diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 4e72f1b8d8d..de1cfafb65b 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -381,6 +381,7 @@ static const autofilter_entry_type autofilter_liblist[] = { STRING_COMMA_LEN ("libmsvcrt") }, { STRING_COMMA_LEN ("libmsvcrt-os") }, { STRING_COMMA_LEN ("libucrt") }, + { STRING_COMMA_LEN ("libucrtapp") }, { STRING_COMMA_LEN ("libucrtbase") }, { STRING_COMMA_LEN ("libpthread") }, { STRING_COMMA_LEN ("libwinpthread") },