missing required architecture armv7 in file?

前端 未结 7 1935
自闭症患者
自闭症患者 2020-12-29 22:55

I keep getting this warning and errors can anyone help?

    ld: warning: ignoring file /Applications/Xcode.app/Contents/Developer/Platforms       /iPhoneOS.p         


        
7条回答
  •  一整个雨季
    2020-12-29 23:16

    Happened to me when I was including a framework that was built using Carthage and it's deployment target has been set to iOS 11 but I was building for iOS 9. Therefore the 32-bit architectures (armv7, i386) were missing. I have changed the deployment target for that framework to iOS 9 and that fixed my problem.

提交回复
热议问题