centos7上 IC工具的安装

安装完centos7系统之后,就开始安装ICADV,从网上下载了压缩包之后,进行解压,然后打patch

打patch的时候,遇到几个问题:

1、一些库或者包的缺失:

1.1、报错:

error while loading shared libraries: libstdc++.so.6:cannot open shared object file

1.2、报错原因:

缺少libstdc++.so.6运行库

1.3、解决方案:安装libstdc++.so.6运行库

执行命令

yum whatprovides libstdc++.so.6

然后会提示哪个安装包有这个库文件,如下:

[root@SnsWeb ~]# yum whatprovides libstdc++.so.6

Loaded plugins: fastestmirror, refresh-packagekit, security

Loading mirror speeds from cached hostfile

libstdc++-4.4.7-11.el6.i686 : GNU Standard C++ Library

Repo    : base

Matched from:

Other    : libstdc++.so.6

然后执行

yum -y install libstdc++-4.4.7-11.el6.i686

参考链接:https://www.jb51.net/article/148563.html

 

2、打patch的方法

把patch解压之后,执行解压出来的脚本:(脚本 + ICADV的安装路径)

./1patch.sh /software/ICADV/ICADV123

然后到icad的/share/license目录下执行configure,激活licence

参考链接:http://bbs.eetop.cn/thread-863823-1-1.html

 

3、运行virtuso的时候,会报错找不到hostname

在root帐号下,执行 hostname+任意名字,然后新开一个terminal即可启动

 

你可能感兴趣的:(centos,linux)