在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 9189|回复: 17

[求助]为什么cadenceic610的帮助文档无法打开!

[复制链接]
发表于 2009-7-14 23:26:11 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
在openSUSE11.1中,在candenceic virtuoso@610主界面启动后,如下:
COPYRIGHT © 1992-2006  CADENCE DESIGN SYSTEMS INC.  ALL RIGHTS RESERVED.
          © 1992-2006  UNIX SYSTEMS Laboratories INC.,
                         Reproduced with permission.
This Cadence Design Systems program and online documentation are
proprietary/confidential information and may be disclosed/used only
as authorized in a license agreement controlling such use and disclosure.
          RESTRICTED RIGHTS NOTICE (SHORT FORM)
Use/reproduction/disclosure is subject to restriction
set forth at FAR 1252.227-19 or its equivalent.
Program:        @(#)$CDS: virtuoso.exe version 6.1.0 10/10/2006 14:09 (cds126047) $
Sub version:        sub-version IC6.1.0.243 (32-bit addresses)
Loading geView.cxt
Loading LVS.cxt
Loading layerProc.cxt
Loading xlUI.cxt
Loading auCore.cxt
Loading schView.cxt
Loading selectSv.cxt
Loading vhdl.cxt
Loading seismic.cxt
Loading ams.cxt
END OF SITE CUSTOMIZATION
*WARNING* obShowTag for tool "text", tag "hiNoHelp" (version "") failed, status 20 = obcServerCantStart
*Warning* No help found for help symbol hiNoHelp
点击菜单help->下面的cadence documentation,弹出提示框:

some cadenceonline documentation files are missing or can not be opened duo to anerror.
to start the cadence documentation systme, type cdsdoc at asystem prompt  
同时在终端下出现如下:
/home/eda/ic610/tools/cdsdoc/bin/obServer: error while loading shared libraries: libnsl.so.1: cannot open shared object file: No such file or directory
obApi: unable to contact /home/eda/ic610/tools/bin/obServer.

在终端系统提示符下,运行如下命令,结果如下:
***@***:~> cdsdoc
/home/eda/mmsim61/tools/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
***@***:~> cdsbook
/home/eda/ic610/tools/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory

请问那位大虾帮忙解决一下,谢谢!

[ 本帖最后由 lishyg 于 2009-7-16 15:14 编辑 ]
发表于 2009-8-24 23:46:30 | 显示全部楼层

Thank You

Hey Hope this works file. Would let you know.
发表于 2010-4-6 18:21:15 | 显示全部楼层
我的缺少java库,不知道怎么添加
发表于 2010-4-14 22:58:40 | 显示全部楼层
换个浏览器试试
发表于 2011-4-17 15:51:00 | 显示全部楼层
这是在edaboard上面找到的解决方案:

Originally Posted by st01liyp
I have solved this problem, spend me a lot of time:
there are three reason we don't get cdsdoc working:
1: java want to set LD_ASSUME_KERNEL to current kernel version
2: obServer want LD_ASSUME_KERNEL set to null
3: https need libstdc++-libc6.1-1.so.2
since I am using ubuntu, so this solution is base on ubuntu.


1.edit $INST_DIR/mmsim610/tools/bin/cdsdoc and $INST_DIR/ic610/tools/bin/cdsdoc like this:
#/////////////////////////////////////
if [ $PLATFORM = "lnx86" ]; then
if [ $ARCH = "x86_64" ]; then
# AMD Opteron RHEE3.0
#LD_ASSUME_KERNEL=2.4.19
LD_ASSUME_KERNEL=2.6.27
export LD_ASSUME_KERNEL
else
#Standard x86 systems
LD_ASSUME_KERNEL=2.2.5
export LD_ASSUME_KERNEL
fi
fi
#////////////////////////////////////


2.edit $INST_DIR/mmsim610/tools/bin/obServer and $INST_DIR/mmsim610/tools/bin/obServer like this
if [ $ARCH = "x86_64" ]; then
# AMD Opteron RHEE3.0
# LD_ASSUME_KERNEL=2.4.19
LD_ASSUME_KERNEL=
export LD_ASSUME_KERNEL
3. download compat-libstdc++-296-2.96-135.i386.rpm
tar zxf compat*tgz
sudo apt-get install alien
cd usr/lib
sudo cp libstdc++-2-libc6.1-1-2.9.0.so /lib32/libstdc++-libc6.1-1.so.2


now cdsdoc works fine.


Originally Posted by skiptoo
I guess you must have a x86_64 arch
For user who uses a i386 arch,just edit the else block in both cdsdoc and obServer file like this
#/////////////////////////////////////
if [ $PLATFORM = "lnx86" ]; then
if [ $ARCH = "x86_64" ]; then
# AMD Opteron RHEE3.0
#LD_ASSUME_KERNEL=2.4.19
#LD_ASSUME_KERNEL=2.6.27
export LD_ASSUME_KERNEL
else
#Standard x86 systems
#LD_ASSUME_KERNEL=2.2.5
LD_ASSUME_KERNEL=2.6.27
export LD_ASSUME_KERNEL
fi
fi
#////////////////////////////////////

and then
sudo cp libstdc++-2-libc6.1-1-2.9.0.so /usr/lib/libstdc++-libc6.1-1.so.2

Thanks a lot "st01liyp", hope everyone good luck! My cdsdoc works just fine!
BTW:My OS is Ubuntu 8.10 with kernel 2.6.27-13

i386的电脑参考前后两个人的回复。
x86-64的电脑 参考前面那个。
发表于 2011-4-18 13:53:46 | 显示全部楼层
good .
发表于 2011-4-24 21:05:32 | 显示全部楼层
我也碰到了同样的问题,先看看你的建议能否有用,谢谢!
发表于 2011-5-2 18:43:20 | 显示全部楼层
DDADSa
发表于 2014-4-27 15:12:49 | 显示全部楼层
没有解决问题啊
发表于 2014-4-28 00:10:25 | 显示全部楼层
great info
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /2 下一条

小黑屋| 手机版| 关于我们| 联系我们| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2025-2-24 17:06 , Processed in 0.034188 second(s), 9 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表