IC6151与Calibre的集成问题
我报了一个这个错,你看看你能不能解决
编辑 .cdsinit,加入以下内容:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; check MGC_HOME
;
mgc_home=getShellEnvVar("MGC_HOME")
if( mgc_home!=nil && isDir(mgc_home) && isReadable(mgc_home) then
; Load calibre.skl or calibre.4.3.skl, not both!
; Load calibre.skl for Cadence versions 4.4 and greater
load(strcat(mgc_home "/lib/calibre.skl"))
;;;;Load calibre.4.3.skl for Cadence version 4.3
;;; load(strcat(mgc_home "/lib/calibre.4.3.skl"))
else
; MGC_HOME is not set correctly. Report the problem.
printf("//Calibre Error: Environment variable ")
if( mgc_home==nil || mgc_home=="" then
printf("MGC_HOME is not set.");
else
if( !isDir(mgc_home) then
printf("MGC_HOME does not point to a directory.");
else
if( !isReadable(mgc_home) then
printf("MGC_HOME points to an unreadable directory.");
)
)
)
printf(" Calibre Skill Interface not loaded.\n")
; Display a dialog box message about load failure.
hiDisplayAppDBox(
?name'MGCHOMEErrorDlg
?dboxBanner"Calibre Error"
?dboxText"Calibre Skill Interface not loaded."
?dialogTypehicErrorDialog
?dialogStyle'modal
?buttonLayout'Close
)
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
非常感谢year2004问题已经解决~
谢谢二楼!
顶一个!
多谢,你的回复很强大
三楼貌似很熟悉skill啊,我通常就加一句话完事儿
二楼的厉害,俺对skill根本不懂!
多謝.正好在使用IC6151