whitequark opened PR #1739 from dont-link-to-ntdll
to master
:
The documentation for
RtlNtStatusToDosError
explicitly tells to call it viaGetProcAddress
. The documentation forNtQueryInformationFile
does not, but similar considerations apply because there is normally no import library forntdll
.The main reason to use
GetProcAddress
though is because MinGW does include an import library forntdll
, this import library contains a definition ofsetjmp
, and because of the way rustc orders linker arguments, this definition ofsetjmp
conflicts with and gets picked over the one inmsvcrt
. Usingsetjmp
from ntdll is undesirable as it is an undocumented API and it is missing from wine, making it harder to develop wasmtime using a cross-compiler.Fixes #1738.
Last updated: Nov 22 2024 at 16:03 UTC