Cadence Virtuoso setup
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
Include these lines at the bottom
setenv AMS_DIR /path/to/amslib setenv PATH "${PATH}:${AMS_DIR}/cds/bin" setenv CDS_BIND_TMP_DD true setenv IUSDIR $incisiv_dir alias ams_cds_start 'ams_cds -64 -tech c35b4 -nologo'
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
Run lmstat to check that it is possible to connect to the license server
lmstat -c 5280@<your licenceserver>
Both cdslmd and altosda should be listed as up.
Run the checksys.sh script listed below to check for any missing dependencies and to set up any missing tools links. In case the scipt gives an error like
Configuration checks failed, status is: FAIL
checkSysConf cannot reliably parse your systems /etc/redhat-release file
It would appear that the file is non-standard and does not contain release
information in the standard readable format.
The contents of your /etc/redhat-release is listed below between
<RELEASE_FILE> tags.
A 'correct' release file should have only one line of content, containing
version information in a standard format.
<RELEASE_FILE>
Red Hat Enterprise Linux Server release 5.9 (Tikanga)
</RELEASE_FILE>
Please check/correct your /etc/redhat-release file and try again.
There is no OEM datafile for -r for the Linux platform.
Valid OEM images are :
foreach: No match.
then the OS is probably newer than checkSysConf used, copy a newer version from another program folder. If you then get
This operating system version '5.0WS' is not supported
If you believe you are running a supported OS then check that
the OS version directory exists in the data directory:
/<path to cadence>/ICC_11.2.41/share/patchData/Linux/x86_64
Then check the version in the aformentioned folder and the text file inside it.
Scripts
Checksys.sh
Usefull for setting up missing tools folders and checking that all dependencies are installed <source lang="bash">
- !/bin/bash
- Script for setting up tools folders and checking dependencies
- By Arild Velure 2013
if [ -z "$CDS_TOP" ] then
echo "Please run environment script first" exit 1
fi
- 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 )
- CTOS_ROOT doesn't seem to have a checksysconf
rm ./problems.txt
- Some installers forget to link the tools folder to the tools.lnx86
- 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" if [ ! -e $i/tools/bin/checkSysConf ] then echo "checkSysConf not found" continue fi # 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')) # If it returns empty it propably didn't find a supported OS version if [ ${#proglist[@]} = 0 ] then $i/tools/bin/checkSysConf -r >> problems.txt echo "FAIL" fi 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 fi done
done </script>
Linux packages that might be required
- openmotif
- tk
- ksh