Stream: git-wasmtime

Topic: wasmtime / PR #1739 winx: do not link directly to ntdll.dll.


view this post on Zulip Wasmtime GitHub notifications bot (May 21 2020 at 17:17):

whitequark opened PR #1739 from dont-link-to-ntdll to master:

The documentation for RtlNtStatusToDosError explicitly tells to call it via GetProcAddress. The documentation for NtQueryInformationFile does not, but similar considerations apply because there is normally no import library for ntdll.

The main reason to use GetProcAddress though is because MinGW does include an import library for ntdll, this import library contains a definition of setjmp, and because of the way rustc orders linker arguments, this definition of setjmp conflicts with and gets picked over the one in msvcrt. Using setjmp 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: Oct 23 2024 at 20:03 UTC