IC 设计验证软件安装启动缺少库问题
时间:10-02
整理:3721RD
点击:
最近安装cadence与synopsys的相关软件是,安装破解完毕总会出现一些启动不了的问题
总结,问题大多是由于Linux缺少某些库文件的问题,如common_shell_exec: error while loading sharedlibraries: libexpat.so.1: cannot open shared object file: No such file or directory
解决方法:
查找是否是库文件问题
find /usr/lib -name libexpat.so*
通常是由于我们在64bit下安装软件,缺少32bit(/usr/lib下)的库文件,即使我们使用apt-get install libexpat*也无法解决
因此,我们需要将32bit的库文件下载下来发到其中即可(/usr/lib)
debian/ubuntu推荐查找网站
http://pkgs.org
https://launchpad.net/ubuntu/+source/libxrandr
https://packages.debian.org/search?mode=filename&suite=jessie§ion=all&arch=i386&searchon=contents&keywords=libXau.so.6
查找到xxx_i386.deb将其下载解压,到xxx_i386/lib/i386-linux-gnu中将库文件拷贝到/usr/lib,别忘了创建软链接
如:ln -s /usr/lib/libXrandr.so.2.2.0 /usr/lib/libXrandr.so.2
最后,这种问题很简单但需要耐心解决,缺少几十个i386的库文件也是有可能的
頂一頂