For empty.rs: ```rust fn main(){} ``` `rustc +nightly-2021-04-25-x86_64-pc-windows-msvc empty.rs -O` don't use ws2_32.dll ``` KERNEL32.dll VCRUNTIME140.dll api-ms-win-crt-runtime-l1-1-0.dll api-ms-win-crt-math-l1-1-0.dll api-ms-win-crt-stdio-l1-1-0.dll api-ms-win-crt-locale-l1-1-0.dll api-ms-win-crt-heap-l1-1-0.dll ``` `rustc +nightly-2021-04-26-x86_64-pc-windows-msvc empty.rs -O` use ws2_32.dll ``` WS2_32.dll KERNEL32.dll VCRUNTIME140.dll api-ms-win-crt-runtime-l1-1-0.dll api-ms-win-crt-math-l1-1-0.dll api-ms-win-crt-stdio-l1-1-0.dll api-ms-win-crt-locale-l1-1-0.dll api-ms-win-crt-heap-l1-1-0.dll ``` Can be checked for example via `dumpbin.exe /dependents empty.exe` regressed between 42816d61e...3709ae324, i'm thinking about #84115 Thing that imported from ws2_32 is `WSACleanup` @rustbot label +O-windows +A-linkage