|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
HSPICE for Windows 2010.12 stops responding when "Simulate" button is clicked [轉貼自tlf]
大意是說 Hspice 2010.12 按下simulate出錯, 解決辦法是縮短系統環境變數PATH的長度(<800字元)An issue exists in the 2010.12 release for the MS Windows platform in which HSPICE will "hang" with the message "hspice.exe has stopped working" once the simulate button has been clicked. This has been traced to Windows PCs running XP or Windows 7 where the environment variable "path" is 800 characters or longer. It may also simply exit the hspice.exe window and not display an error.
You can check the length of your Windows path variable using the following method...
1. Go to Control Panel > System.
2. Select Advanced System Settings from the left (Windows 7 only).
3. Click on the Advanced tab.
4. Click the Environment Variables button.
5. Under system variables, double-click "path" (not PATHEXT)
6. Place your cursor in "Variable Value" and do a Ctrl-A (select all) and a Ctrl-C (copy)
7. Go into MS Word 2007 and paste the string (Crtl-V)
8. In the "Review" tab, click Word Count
This issue is expected to be corrected in a subsequent release. Here are two workarounds:
1. Reduce the size of your path variable by removing unneeded or redundant paths.
2. Launch HSPICE from a DOS window using a batch script that sets PATH only as needed.
Example: Create this DOS script called "go.bat" and put it in the design directory...
REM "go.bat" a DOS script to launch hspice
set PATH=C:\synopsys\Hspice_E-2010.12\BIN
hspice.exe -i %1 -o %2
Then, execute HSPICE from a DOS command (cmd) prompt with the input and output names...
DOS> go infile.sp outfile
Since the PATH variable is now very small (for this DOS shell only), the simulation will run to completion; and users of other applications that require the large system path will not be affected.
|
|