#!/bin/tcsh ###################################################################### # Startup script for icfb with the NCSU technologies # Erik Brunvand, University of Utah ###################################################################### setenv CADPUB /uusoc/facility/cad_common/ setenv CADSETUPS ${CADPUB}/local/setups/F08 # Set up for the Cadence tools with NCSU technologies source ${CADSETUPS}/setup-ncsu # remind the user where they are... echo "Working directory is" $PWD # We need the cdsLibMgr.il file in the startup directory! # Link it if it's not here already... if (! -e cdsLibMgr.il) then ln -s $CDK_DIR/cdssetup/cdsLibMgr.il . endif # Also link to the system-wide .cdsinit file if (! -e .cdsinit) then ln -s $CDK_DIR/.cdsinit . endif # You may want the class version of cds.lib. You need a copy of # this so you can modify it as you add your own libraries. if ($?LOCAL_CADSETUP) then if (! -e cds.lib) then cp $LOCAL_CADSETUP/cadence/cds.lib . endif endif # Fire up icfb, and pass any args through to the program icfb $argv