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

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

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2755|回复: 8

ubuntu20.04 安装spyglass2016.06软件打开后打开工程或者添加文件时闪退

[复制链接]
发表于 2022-10-6 11:11:28 | 显示全部楼层 |阅读模式

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

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

x
WARNING : SpyGlass is only tested on Red Hat (Enterprise Linux release 5 and higher),
          Suse (version 10.0 and higher) and Ubuntu (version 14.04 LTS) flavors for Linux.
          Detected OS kernel version'(5.13.0-27-generic)' seems to be meeting the requirements,
          but detected OS flavor
          'Linux version 5.13.0-27-generic (buildd@lgw01-amd64-045) (gcc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #29~20.04.1-Ubuntu SMP Fri Jan 14 00:32:30 UTC 2022 ' is not a tested OS flavor.
          SpyGlass run may have OS related issues specific to this distribution.
          Please contact Atrenta Support for any further queries in this regard.

Warning: QGtkStyle was unable to detect the current GTK+ theme.
Critical: Caught signal :  11
Critical:         Signal Code :  1  Address :  0x14f54357fff8

*** SpyGlass Terminated abnormally.


SpyGlass terminated abnormally...

********************************************************
** SPYGLASS ABNORMAL TERMINATION REPORT ****************
********************************************************

This section contains information related to spyglass crash,
which may be helpful for debugging the cause of crash.

    If you are using the SpyGlass's standard C-Primitives (formerly
called C-Rules) then this is a problem in SpyGlass Software, and
should be reported to SpyGlass Support Team.
Please forward the log-file, together with the HDL design file(s)
and detail of how spyglass was invoked to support@synopsys.com.

    If you are using your own custom C-Primitives (or C-rules), then
this might be a problem in those custom C-rules. Stack trace in
this file may be helpful to you in such cases. If you are doubtful,
you may contact SpyGlass Support Team.

**** SpyGlass Terminator Signal: 11 [SIGSEGV (Segmentation fault)].

STACK TRACE
-----------


GDB TRACE
---------
Using gdb from '/usr/synopsys/spyglass_2016.06/SpyGlass-L2016.06/SPYGLASS_HOME/gdb75_64/bin//gdb' ....
Could not find platform independent libraries <prefix>
Could not find platform dependent libraries <exec_prefix>
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
'import site' failed; use -v for traceback
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named os
/tmp/gdb3255:2: Error in sourced command file:
ptrace: Operation not permitted.

##status : Abnormal Termination.

打印信息如上,求大佬们指点

发表于 2022-10-6 20:48:24 | 显示全部楼层
修改SPYGLASS_HOME/lib/multi-perl/bin/perl,支持5.x内核(复制Linux-4*部分)
     Linux-5*)      ##now we have Linux-64 bit also
            PROCNAME=`uname -p`
            if [ "X$PROCNAME" = "Xunknown" ]; then
               PROCNAME=`uname -m`
            fi
            if [ X"$PROCNAME" = "Xx86_64" ]; then
                       species=Linux4
                    else
                       species=Linux2
                    fi
              ;;


修改SPYGLASS_HOME/lib/SpyGlass/standard-environment.sh,支持5.x内核(复制Linux-4*部分)

Linux-5*)
            if [ X"$switch32bit" = "Xyes" ]; then
                echo "Linux2"
            elif  [ X"$switch64bit" = "Xyes" ]; then
                PROCNAME="$unameP"
                if [ "X$PROCNAME" = "Xunknown" ]; then
                    PROCNAME="$unameM"
                fi
                if [ X"$PROCNAME" = "Xx86_64" ]; then
                    echo "Linux4"
                else
                    echo "Linux2"
                fi
            else
                PROCNAME="$unameP"
                if [ "X$PROCNAME" = "Xunknown" ]; then
                    PROCNAME="$unameM"
                fi
                if [ X"$PROCNAME" = "Xx86_64" ]; then
                    if [ X"$defExeOn64Bit" = "X32" ]; then
                        echo "Linux2"
                    else
                        echo "Linux4"
                    fi
                else
                    echo "Linux2"
                fi
            fi
            ;;
 楼主| 发表于 2022-10-7 21:41:49 | 显示全部楼层


要你命3000 发表于 2022-10-6 20:48
修改SPYGLASS_HOME/lib/multi-perl/bin/perl,支持5.x内核(复制Linux-4*部分)
     Linux-5*)      ##now ...


这一步已经完成了,现在软件是可以打开,但是进行新建工程或者添加文件之类的操作时,软件闪退。目前的问题是软件闪退
发表于 2022-10-8 09:21:45 | 显示全部楼层
license问题吧
发表于 2022-10-8 13:06:31 | 显示全部楼层
https://bbs.eetop.cn/thread-868913-1-1.html
18.04下闪退是je malloc的问题,不确定是不是一样,可以试下
发表于 2022-10-8 19:02:42 | 显示全部楼层
我试过两个平台 一个平台会报Error, 但不会退出;另一个平台没有任何错误(Centos)。
所以不折腾了
 楼主| 发表于 2022-10-9 20:44:26 | 显示全部楼层


douyajia17 发表于 2022-10-8 13:06
https://bbs.eetop.cn/thread-868913-1-1.html
18.04下闪退是je malloc的问题,不确定是不是一样,可以试下 ...


感谢感谢,问题解决了
发表于 2023-9-7 22:14:26 | 显示全部楼层
感谢楼主,感谢douyajia17
发表于 2024-11-23 12:08:42 | 显示全部楼层
本帖最后由 pankao 于 2024-11-23 12:31 编辑


yuming_ziyi 发表于 2022-10-9 20:44
感谢感谢,问题解决了


具体怎么解决的,替换掉jemalloc库吗

->
定位到了,standard-environment.sh里useJeMalloc=no
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

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


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

GMT+8, 2024-12-27 20:19 , Processed in 0.022471 second(s), 6 queries , Gzip On, Redis On.

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