Is it possible to get information about any binary on OS X to determine if it’s a 32 bit or 64 bit binary?
I played with the ‘otool’ command but can’t find this kind of information.
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.
Use the
filecommand instead ofotool. It will list all the architectures in the binary. On Intel Macs i386 is 32 bit and x86_64 is 64 bit.