RFIC dynamic link setup: Difference between revisions

From VLSI
Jump to navigation Jump to search
Xhyu (talk | contribs)
No edit summary
Yifei (talk | contribs)
No edit summary
Line 24: Line 24:
load strcat(getShellEnvVar("HPEESOF_DIR") "/idf/config/.cdsinit")
load strcat(getShellEnvVar("HPEESOF_DIR") "/idf/config/.cdsinit")
</pre></code></blockquote>
</pre></code></blockquote>
*Check .bashrc file under your Cadence design directory if there is this sentence:
<blockquote><code><pre>
export PATH=$PATH:~/bin
</pre></code></blockquote>
If not, add it into .bashrc file.
*Type dylink in your Cadence design directory to start Cadence
*Type dylink in your Cadence design directory to start Cadence

Revision as of 02:57, 3 February 2013

  • Creat a virutoso with RFIC dynamic link start-up script, naming dylink (you may name it as you wish), and put it under <home directory>/bin
#!/bin/bash
#setups to setup RFIC dynamic lilnk and start Virtuoso
###ADS2011 environment#####################
#export  CDS_SITE=$IC
export HPEESOF_DIR=/usr/local/ADS2011_01
#export HPEESOF_DIR=/usr/local/ADS2009
export LM_LICENSE_FILE=/usr/local/ADS2011_01/licenses/license.lic
export PATH=$PATH:$HPEESOF_DIR/bin
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/ADS2011_01/lib/linux_x86
export AGILEESOFD_LICENSE_FILE=/usr/local/ADS2011_01/licenses
export ADS_LICENSE_FILE=27007@io.ece.iastate.edu
export IDF_CDS_VERSION="6.1.5"
source $HPEESOF_DIR2011/bin/setCSF.ksh
# setCSF.ksh will overwrite CDS_LOAD_ENV, the setup in $IC is CWDElseHome
# add the following line without # in .cdsinit file under the working directory
# load strcat(getShellEnvVar("HPEESOF_DIR") "/idf/config/.cdsinit")
virtuoso &

The above script works for the Linux server configurations dated 01/29/2013. Make the necessary change when the system is configured differently.

  • Add the following line to the .cdsinit file in the Cadence design directory:
load strcat(getShellEnvVar("HPEESOF_DIR") "/idf/config/.cdsinit")
  • Check .bashrc file under your Cadence design directory if there is this sentence:
export PATH=$PATH:~/bin

If not, add it into .bashrc file.

  • Type dylink in your Cadence design directory to start Cadence