I’m thinking like Apple did with their universal binaries containing both x86 and ppc code
I’m thinking like Apple did with their universal binaries containing both x86 and ppc
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.
No. The
IMAGE_FILE_HEADER.Machinefield determines whether a DLL is x86 or x64. One field cannot hold two different values simultaneously, and there’s only oneIMAGE_FILE_HEADERin a DLL.That said, a pure .Net DLL contains IL instructions, and they can be compiled to either 32 bits or 64 bits.