Changes between Initial Version and Version 1 of DsxEnviron
- Timestamp:
- Sep 6, 2006, 3:46:38 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DsxEnviron
v1 v1 1 Let's suppose you have installed all tools in `~/labo`. 2 You could use this kind of script to setup your environment: 3 4 The most important part is dsx_env.sh which sets correct `PYTHONPATH` variable 5 6 {{{ 7 export LABO=$HOME/labo 8 9 export CCTOOLS=$LABO/cctools 10 export SOCLIB=$LABO/soclib 11 export SYSTEMC=$LABO/systemc 12 export SYSTEMCASS=$LABO/systemcass 13 14 export PATH=$PATH:$SOCLIB/tools/bin:$CCTOOLS/bin 15 16 export DSX_DIR=$LABO/dsx 17 18 . $DSX_DIR/bin/dsx_env.sh 19 }}}