欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 房产 > 建筑 > 新版 MacOS 无法从 /usr/local/lib 加载动态链接库的解决办法

新版 MacOS 无法从 /usr/local/lib 加载动态链接库的解决办法

2025/1/18 16:21:13 来源:https://blog.csdn.net/u011570312/article/details/145149267  浏览:    关键词:新版 MacOS 无法从 /usr/local/lib 加载动态链接库的解决办法

自己编写的动态链接库在Unix规范下一般位于/usr/local/lib,在2023年及之前的MacOS版本中,直接将动态库安装到该位置即可在程序运行时加载,可是升级MacOS版本后,ld就报错。

错误现象

运行程序,报错

dyld[6376]: Library not loaded: libxxx.dylibReferenced from: <BD86A23A-E5C5-35D0-BE6D-F9B966A01280> ..../build/xxxxReason: tried: 'libxxx.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OSlibxxx.dylib' (no such file), 'libxxx.dylib' (no such file), '..../build/libxxx.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/..../build/libxxx.dylib' (no such file), '..../build/libxxx.dylib' (no such file)
zsh: abort      ./xxxx

原因分析

运行

man dyld

可以看到以下文本

DYLD_FALLBACK_LIBRARY_PATHThis is a colon separated list of directories that contain libraries.  If a dylib is not found at itsinstall  path, dyld uses this as a list of directories to search for the dylib.For new binaries (Fall 2023 or later) there is no default.  For older binaries, their is a default fallbacksearch path of: /usr/local/lib:/usr/lib.

意思是说2023年秋之后,/usr/local/lib:/usr/lib不再是DYLD_FALLBACK_LIBRARY_PATH的默认值,所以造成了这个重大的行为改变。

解决方法

将该环境变量export赋值,放到.bashrc/.zshrc在shell开启时自动执行(具体操作略)或在程序启动时手动声明,如

DYLD_FALLBACK_LIBRARY_PATH=/usr/local/lib ./xxxx

即可使程序加载到/usr/local/lib下的动态库,成功运行。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com