How can I check how dynamic linking is acheved on my system? And what restrictions are placed on dynamically linked code. What requirements are placed on code for it to be dynamically linked?
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.
It almost looks like you are asking if there is any portable way to check on your OS capabilities, regardless of what the OS is.
The only thing like that which can be said is, “Read the documentation”.
For the OS’es I know about, Windows uses DLLs for dynamic linking, and Unixes use
.sofiles. Both provide the capability to either manually or automaticly load the library’s entry points.