Hi all I need to change architecture type in the file.
when I do lipo -info command I get only arm7 but I need to have i386 next to it.
Is there any command that can add me i386 info inside the file?
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.
Yes, it’s called
cc, but it depends on some minor configuration files (*.m or *.c files).Edit: Sorry for not making the joke obvious. What I wanted to say is:
There’s not way to change the architecture of an executable file. Executables are produced by compiling source code to machine code and this process is not reversible. You’ll need the original source code to recompile the project to the missing architecture. Then you can use
lipoto combine the executables to a fat binary.