dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib

随着16.0系统正式发布,最近升级xcode14以调试16.0的真机。升级成功后,发现调试11.x和12.x固件的iphone,运行app直接崩溃了,启动不了。
崩溃日志如下:

dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib
Referenced from: /var/containers/Bundle/Application/xxx/xxxxxxx.app/xxxxxxx
Reason: image not found  

看字面上的意思是加载libswiftCoreGraphics动态库失败了,没有找到该库的文件。
这个库属于系统库,因为项目采用了OC+Swift混编,所以需要依赖。
上网查找类似的问题,试了常见的解决方案如下:

1.手机重启
2.xcode 清理项目生成文件,重新build
3.修改build settings- Always Embed Swift Standard Libraries-YES
4.重新添加build settings- Runpath Search Paths-@executable_path/Frameworks
5.添加build settings- Runpath Search Paths-/usr/lib/swift
6.关闭bitcode(项目设置里也没有开启Bitcode)

都没有解决问题
在苹果开发者论坛上也有好些帖子,遇到这个问题,没有给出解决方案。

查看生成的app显示包内容,看到@executable_path/Frameworks目录下,有libswiftCoreGraphics.dylib文件,如下图:


app-name-Frameworks.png

但运行的时候却加载了另一个路径/usr/lib/swift/libswiftCoreGraphics.dylib
有帖子说用install_name_tool命令工具对app的动态库路径做修改,命令如下

install_name_tool oldpath newpath app_path/app_name

因为觉得治标不治本,所以没有尝试。
用otool命令工具查看app依赖的动态库,命令如下

otool -L app_path/app_name

xcode 14编译生成的app的依赖库,如下图:

xcode14 otool.png

之前使用xcode13调试11.x真机运行正常,所以比较下
xcode13编译生成的app的依赖库,如下图:
xcode13 otool.png

对比发现xcode14生成的app的依赖库多了/usr/lib/swift/libswiftCoreGraphics.dylib,算是找到问题了。
同时看到依赖库里也有@rpath/libswiftCoreGraphics.dylib,感觉是xcode14编译时重复依赖了系统库。

怎么解决重复依赖的问题,继续查资料,发现xcode13.2版本发布日志里有提到一个已知问题,原文如下:

Apps built with Xcode 13 or Xcode 13.1 that make use of Swift Concurrency features (such as async/await), deploy to iOS prior to 15, tvOS prior to 15, or watchOS prior to 8, and have bitcode enabled may crash at launch with an error reporting that the libswift_Concurrency.dylib library was not loaded.
Workaround: Add -Wl,-weak-lswift_Concurrency -Wl,-rpath,/usr/lib/swift to Other Linker Flags in the app’s build settings.

中文意思如下:

使用 Xcode 13 或 Xcode 13.1 构建的应用程序使用 Swift 并发功能(例如async/ await),部署到 15 之前的 iOS、15 之前的 tvOS 或 8 之前的 watchOS,并且启用了位码可能会在启动时崩溃并出现错误报告该库未加载。libswift_Concurrency.dylib
解决方法:在应用程序的构建设置中添加到其他链接器标志。-Wl,-weak-lswift_Concurrency -Wl,-rpath,/usr/lib/swift

因此我们可以借鉴一下,用弱引用(或者叫弱链接)的方式同时指定弱链接的路径和先后顺序,来处理libswiftCoreGraphics.dylib

buildsettings- Other Linker Flags-添加"-Wl,-weak-lswiftCoreGraphics -Wl,-rpath,/usr/lib/swift"

至此,解决了这个问题!应该是xcode14自身兼容低固件的bug导致的问题。

你可能感兴趣的:(dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib)