diff options
author | Martin Storsjö <martin@martin.st> | 2025-03-20 23:27:05 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2025-03-31 13:35:10 +0300 |
commit | 6ac0e2868057515f860f0a27a17449ef49655a6a (patch) | |
tree | 37f30efc8916524a966e78d818cffeb5f865d2df | |
parent | 88c06ad206a407f60409b0e4b4ac91aa64938406 (diff) | |
download | binutils-6ac0e2868057515f860f0a27a17449ef49655a6a.zip binutils-6ac0e2868057515f860f0a27a17449ef49655a6a.tar.gz binutils-6ac0e2868057515f860f0a27a17449ef49655a6a.tar.bz2 |
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ö <martin@martin.st>
-rw-r--r-- | ld/pe-dll.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ld/pe-dll.c b/ld/pe-dll.c index 4e72f1b..de1cfaf 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") }, |