Changes between Initial Version and Version 1 of DsxEnviron


Ignore:
Timestamp:
Sep 6, 2006, 3:46:38 PM (18 years ago)
Author:
Nicolas Pouillon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DsxEnviron

    v1 v1  
     1Let's suppose you have installed all tools in `~/labo`.
     2You could use this kind of script to setup your environment:
     3
     4The most important part is dsx_env.sh which sets correct `PYTHONPATH` variable
     5
     6{{{
     7export LABO=$HOME/labo
     8
     9export CCTOOLS=$LABO/cctools
     10export SOCLIB=$LABO/soclib
     11export SYSTEMC=$LABO/systemc
     12export SYSTEMCASS=$LABO/systemcass
     13
     14export PATH=$PATH:$SOCLIB/tools/bin:$CCTOOLS/bin
     15
     16export DSX_DIR=$LABO/dsx
     17
     18. $DSX_DIR/bin/dsx_env.sh
     19}}}