Is there an open source program for Windows that offers the same functionality as Linux’ /lib/ld‑linux.so.2?
Is there an open source program for Windows that offers the same functionality as
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The loader is a core part of the OS on Windows; there’s no open-source alternative I’m aware of, and I’m not sure it’d be possible to do it correctly in any case – you have to handle the minefield of assumptions that kernel32/ntdll have regarding address space layout, support SxS, ASLR, hotpatching, and more.
Open-source linkers are common (e.g., gnu tools), but I gather that’s not what you’re after.