Cadence Virtuoso setup

From ift
Revision as of 13:53, 19 July 2013 by Ave082 (talk | contribs)

Update install manager

Always update install manager if a newer exists or else installations may fail.

cd /prog/cadence/
mkdir iscape
tar xvf /prog/download/download.msc.rl.ac.uk/Cadence/2012_2013/ISCAPE/lnx86/iscape_VERSION

Run install manager

/prog/cadence/iscape/iscape/bin/iscape.sh&

configure install manager

preferences -> directories
Set default install directory to
/prog/cadence

install/update program with install manager

For new installs, follow the install instructions provided by europractice in addition to the tips from this guide. Correct directory naming reduces the amount of editing of the settings file later.

  • Press the icon which has the text "local directory/media install"
  • Select browse and navigate to the directory containing the install files and select the CDROM1 folder. *Check that there isn't a slash at the end of the path. The program doesn't search recursively.

fex: /prog/cadence/unpacked/ASSURA04.12.020-5141_lnx86.Hotfix/CDROM1

  • You don't need to install all updates recursively, select only the latest hotfix and the install will ask for the path to the base install when it is needed. If there are no hotfixes, install the base install.
  • Select the correct path to install to, keep the existing naming convention.
  • If a window opens with "Welcome to OpenAccess.....", just press enter and then 'n' and then enter again.
  • If a window opens which asks about configuring the license server, press n.
  • When the install is finished and you are back in the result list, you need to press the small underlined cancel text to change the path.

Package specifics

INCISIVE

When doing a full install, INCISIVE needs to be installed first as it is required by IC. Press cancel when the ARM license file dialog shows.

ASSURA

There are two versions ASSURA*-615 and ASSURA*-5141. 615 is for compability with IC5 (CDB), install folder is ASSURA_*_OA. 5141 is for use with IC6 (OA), install folder is ASSURA_*_CDB.

ALTOS

Altos doesn't use install manager and isn't caught by the untar program as it is a .tgz file.

VIPCAT

Choose UVM as the packet to install for IP verification

Configuration

If a new install, then copy the template script called "production_cds_20xx_linux.csh" from the download folder to the /prog/cadence folder.

Line references following will be based on the 2012 release of the file. Check that actual foldernames are correct.

  • 24 - Set correct license server at line
  • 27 - Set top folder to /prog/candece
  • 37 - Set ALTOS path to /ALTOS/altos_rel3.2p3
  • 57 - Set ASSURA path to /ASSURA_4.12_CDB if using IC5, /ASSURA_4.12_OA if using IC6
  • 72/74 - Comment/uncomment line according to IC version
  • 83 - Set to correct MVS folder (correct according to install instructions)
  • 89+91 - Change tools to tools.lnx86 (check folder)
  • 110 - Set to correct IC6 folder (correct according to install instructions)
  • 151 - Set to correct ICC folder (correct according to install instructions)
  • 188 - Set PVE path to /PVE_11.12HF106
  • 213 - Set Conformal path to /CONFORMAL_11.10
  • 229 - Set to correct RCL folder (correct according to install instructions)
  • 243 - Set EDI path to /EDI_11.1
  • 258 - Set to correct ET folder (correct according to install instructions)
  • 274 - Set to correct ETS folder (correct according to install instructions)
  • 293 - Set MMSIM path to /MMSIM_11.10
  • 315 - Set INCISIV path to /INCISIVE_12.1
  • 387 - Set VIPCAT path to /VIPCAT_11.3.014
  • 411 - Set CTOS path to /CTOS_12.1

Save file as production_cds_20xx_linux_mod.csh

csh
chmod +x /prog/cadence/production_cds_20xx_linux_mod.csh
source /prog/cadence/production_cds_20xx_linux_mod.csh

Scripts

=Checksys.sh

Usefull for setting up missing tools folders and checking that all dependencies are installed <source lang="bash">

  1. !/bin/bash
  2. Script for setting up tools folders and checking dependencies
  3. By Arild Velure 2013

if [ -z "$CDS_TOP" ] then

 echo "Please run environment script first"
 exit 1

fi

  1. Add new modules if needed

cds_paths=( $CDS_ASSURA $CDS_MVS $CDS_IC $CDS_ICC $CDS_PVE $CDS_CONFORMAL $RC_PATH $CDS_SOCE $CDS_ET $CDS_ETS $CDS_MMSIM $incisiv_dir $CDS_VIPCAT $CTOS_ROOT )

  1. CTOS_ROOT doesn't seem to have a checksysconf
  1. Some installers forget to link the tools folder to the tools.lnx86
  2. Creat links so we don't need to edit and check settings file

for i in "${cds_paths[@]}" do

 if [ ! -e $i/tools ]
 then
   if [ -e $i/tools.lnx86 ]
   then
     ln -s tools.lnx86 $i/tools
   fi
 fi
 # Run checksys to check that system is properly installed
 echo "Checking $i"
 # You need to specifically mention the name of the release to test for.
 # Next line parses the output and grabs all lines which starts with a space and contains
 # some characters, which should only be release names, and puts them in an array
 proglist=($($i/tools/bin/checkSysConf -r | egrep '^ +\w'))
 for a in "${proglist[@]}"
 do
   echo "Prog version $a"
   result=$($i/tools/bin/checkSysConf $a -q)
   echo $result
   if [ "$result" = "FAIL" ]
   then
     #Something failed, run again with verbosity
     $i/tools/bin/checkSysConf $a >> problems.txt
     #read -p "Press enter to continue"
   fi
 done

done </script>