当前位置: 首页 > 工具软件 > san-library > 使用案例 >

错误:ASan runtime does not come first in initial library list; you should either link runtime to

楚俊逸
2023-12-01

在Linux下使用Python import时遇到下面的错误:
1821ASan runtime does not come first in initial library list; you should either link runtime to your application or manually preload it with LD_PRELOAD.

解决方法
#1. 找到libasan.so 动态库位置, 一般GCC都自带,
#一般在 /usr/lib/gcc/XXXX/XXX/libasan.so,使用下面的命令

export LD_PRELOAD=/usr/lib/gcc/x86_64-linux-gnu/11/libasan.so

 类似资料: