真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file
1、lipo remove命令将模拟器库的arm64架构移除
$ lipo XXX.a -remove arm64 -output XXX.a
2、再次合并
$ lipo -create xxx.a xxx.a -output XXX.a
真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file
1、lipo remove命令将模拟器库的arm64架构移除
$ lipo XXX.a -remove arm64 -output XXX.a
2、再次合并
$ lipo -create xxx.a xxx.a -output XXX.a