]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
ld/PE: Add another mingw UCRT library name to the autoexport exclusion list
authorMartin Storsjö <martin@martin.st>
Thu, 20 Mar 2025 21:27:05 +0000 (23:27 +0200)
committerMartin Storsjö <martin@martin.st>
Mon, 31 Mar 2025 10:35:10 +0000 (13:35 +0300)
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ö <martin@martin.st>
ld/pe-dll.c

index 4e72f1b8d8dcb75ad17401390651fc22150961b7..de1cfafb65bc246307a67c71582476393143de36 100644 (file)
@@ -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") },