運(yùn)行舊項(xiàng)目時(shí)遇到問(wèn)題:
xxx/Pods/Target Support Files/Pods-xxx/Pods-xxx-frameworks.sh: line 128: ARCHS[@]: unbound variable
Command PhaseScriptExecution failed with a nonzero exit code
或者
The linked library 'xxxx.a/Framework' is missing one or more architectures required by this target: armv7.
解決方案1:
在訪達(dá)的應(yīng)用程序列表中,找到xcode,右鍵選擇顯示簡(jiǎn)介答毫,然后勾選“使用Rosetta打開(kāi)”。
這種方法最簡(jiǎn)單粗暴季春,什么代碼都不用改洗搂,但是因?yàn)橐俳?jīng)過(guò)Rosetta轉(zhuǎn)譯,會(huì)影響執(zhí)行效率载弄,也會(huì)增加電池的續(xù)航耘拇。不推薦這一種方法,只是在最后沒(méi)有解決辦法的時(shí)候使用宇攻。
解決方案2:
在Target-Build Settings-Excluded Architectures中添加以下代碼
EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64=arm64 arm64e armv7 armv7s armv6 armv8 EXCLUDED_ARCHS=(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_(NATIVE_ARCH_64_BIT))
但是運(yùn)行之后還是會(huì)提示 arm64 的問(wèn)題惫叛,所以在 Debug 哪里多加一個(gè) arm64 ,Release 是不需要的,不然打包會(huì)報(bào)錯(cuò)逞刷。
如果還是不行就是在 podfile 中加入下列代碼嘉涌,重新pod install
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
解決方案3:
直接用真機(jī)運(yùn)行