Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
大家好,我需要更改文件中的架构类型。
当我执行lipo -info命令时,我只得到 arm7 但我需要在它旁边放 i386。
lipo -info
是否有任何命令可以在文件中添加我的 i386 信息?
是的,它被称为cc,但它依赖于一些次要的配置文件(*.m 或 *.c 文件)。
cc
编辑:很抱歉没有让这个笑话变得明显。我想说的是:
无法更改可执行文件的体系结构。可执行文件是通过将源代码编译为机器代码生成的,这个过程是不可逆的。您将需要原始源代码将项目重新编译为缺少的架构。然后,您可以使用lipo将可执行文件组合成胖二进制文件。
lipo