Red Hat Enterprise AS 5下安装Cadence IC610安装若干问题的解决

发布于 2022-09-18 17:24:06 字数 3777 浏览 7 评论 0

转自:http://bbs.stirf.com/viewthread.php?tid=12  

Downloaded the Cadence IC Design - Virtuoso (Ver 6.10) from the following site:
http://www.verycd.com/topics/148755/
Installed IC610 Base on the system ubuntu 7.10 using installscape. Succeeded in intel X86 system but failed in AMD64 system.
You could install the software following the instructions from here:
http://www.et.byu.edu/groups/ece ... elp/getstarted.html
The installation is very easy, setup the environment after the installation.
export LM_LICENSE_FILE= (put here where your license server or file is located)
export CDS_LIC_FILE = (put here where your license server or file is located)
export LD_LIBRARY_PATH = (library paths of ic and ldv ic/tools/lib, ldv/tools/lib, spr/tools/lib, soc/tools/lib)
export OA_HOME = (OA installed directory)
export CDS_SITE = (location of NCSU design kit installation directory - …/NCSU/local)
export CDS_Netlisting_Mode=Analog
export USE_NCSU_CDK
export CDS = (NCSU design kit directory …/NCSU/local/cdssetup)
export PATH=$PATHall cadence tool directories that are required are listed below)

    * …/ic/tools/bin
    * …/ic/tools/dfII/bin
    * …/ic/tools/concice/bin
    * …/ic/tools/dracula/bin
    * …/ic/tools/plot/bin
    * …/ldv/tools/bin
    * …/spr/tools/bin
    * …/soc/tools/bin
    * …/icc/tools/iccraft/bin

The problems I’ve met when I tried to run icfb:
1.
Code:
Qt Warning: X Error: BadWindow (invalid Window parameter) 3
Major opcode: 2 (X_ChangeWindowAttributes)
Resource id: 0×2e00011

and
Code:
Display :0.0 Error “BadWindow (invalid Window parameter)”
\e request 18 error 3 serial 1392
It will not be appeared when using ssh connection from windows client, so it seems to be the linux display problems. You could simply solve this promblem by adding following scripts in the /etc/X11/Xorg.conf file:
Code:
Section “Extensions”
Option “Composite” “Disable”
EndSection
2.
Quote:
/usr/local/cadence/IC610/tools/dfII/bin/icfb: 97: cds_plat: not found
/usr/local/cadence/IC610/share/oa/bin/sysname: 328: /bin/awk: not found
/usr/local/cadence/IC610/tools/dfII/bin/32bit/icfb.exe: error while loading shared libraries: libelf.so.1: cannot open shared object file: No such file or directory

Ignored the first problem first.
The sencond problem could be solved easily: make a awk link in /bin using this command
Quote:
sudo ln -s /usr/bin/awk /bin/awk
apt-cache search libelf and apt-get install libelf**
If the error still existed, make a link libelf.so.1, first find available libelf useing
Quote:
ls -l libelf*
some file name will show up, then make a link to it using
Quote:
ln -s /use/lib/ /usr/lib/libelf.so.1
In AMD64 system require liblbss.so* rather than libelf.so.1. Haven’t solved this problem yet.
Then the icfb could be started up now, but the first problem will still exist. I dont know how to solve but just adding a comment at the begin of the sentence where calling for cds_plat.
3. The other problem met: cant open online help document.
export MOZILLA_HOME=/usr/bin/netscape , but it seems not working on my machine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文