Цитата(3.14 @ Mar 10 2008, 17:03)

Помнится, для того чтоб запустить IS analyser, надо было какой то файлик отпатчить ...
Сейчас не могу вспомнить какой и как, и найти на форуме не могу

Нашел:
@echo off
rem #===========================================================================
rem # Copyright Mentor Graphics Corporation 1994,2004
rem # All Rights Reserved
rem #===========================================================================
set VERSION=3.4
set DATE=Thu Sep 2 22:09:45 2004
rem #===========================================================================
rem # Set the application name
set APPLICATION=is
set APPLICATION_STRING=Interconnect Synthesis
rem #===========================================================================
rem # Validate ICXHOME
rem # Save these for later restoration
set INIT_ICXHOME=%ICXHOME%
set INIT_MGC_HOME=%MGC_HOME%
if not "%ICXHOME%" == "" goto icxhome_set
if not "%MGC_HOME%" == "" goto mgc_home_set
echo ;; Error: MGC_HOME environment variable not set.
echo ;; Please check MGC_HOME or set ICXHOME to root of the ICX release tree.
goto end
:mgc_home_set
if exist "%MGC_HOME%\pkgs\icx\_bin" goto mgc_home_valid
echo ;; Error: ICX package is not installed in current MGC_HOME.
echo ;; Please check MGC_HOME or set ICXHOME to root of the ICX release tree.
goto end
:icxhome_set
if exist "%ICXHOME%\_bin" goto set_mgc_home_from_icxhome
echo ;; Error: ICXHOME environment variable set incorrectly.
echo ;; Please check the value of ICXHOME.
goto end
:set_mgc_home_from_icxhome
set MGC_HOME=%ICXHOME%\..\..
goto icxhome_valid
:mgc_home_valid
set ICXHOME=%MGC_HOME%\pkgs\icx
:icxhome_valid
rem #===========================================================================
rem # Set the CPU environment variable
REM call "%MGC_HOME%\pkgs\icx\_bin\utils\set_cpu"
REM if errorlevel 1 goto end
set CPU=ix86.4
rem #===========================================================================
rem # Set perl variables
set ICXPERLLIB=%MGC_HOME%\pkgs\icx\_bin\perl
rem #===========================================================================
rem # Call application invoke script
call "%MGC_HOME%\pkgs\icx_pro_perl\_bin\icxperl" "%MGC_HOME%\pkgs\icx\_bin\%APPLICATION%.pl" %*
goto end
:end
rem # Restore these to what they were before we started!
set MGC_HOME=%INIT_MGC_HOME%
set ICXHOME=%INIT_ICXHOME%