Bootstrap

python pyinstaller 打包后报libgcc_s.so.1 must be installed for pthread_cancel to work

linux上使用pyinstaller打包后,打包的文件里有libgcc_s.so.1,换成其它系统运行打包后的程序,start_new_thread的函数运行完时出现

libgcc_s.so.1 must be installed for pthread_cancel to work

在网上找了半天的解决方案,没有一个好用的。

我是从libgcc 4.9.2  x64 换到其它x64系统上,在pyside打包的文件中有好多要用到这个库的地方

而且出现这个是问题是在调用thread的线程结束的时候出现的。

验证和分析过程略过,直接说解决方法

python代码

 

if(os.path.isfile(strLibPath + "libgcc_s.so.1")):
    print("load local library")
    libgcc_s = ctypes.cdll.LoadLibrary(strLibPath + "libgcc_s.so.1")

 

确保运行的程序中能加载对应的lib文件。再打包测试,问题解决。

分析,在不同的系统下,加载库文件默认路径不同,可能造成被系统中的库先加载,本地路径的不能加载成功

所以在代码里强行加载本地库,保证程序中引用是正常的。

 

 

;