better source paths
This commit is contained in:
parent
f60351815b
commit
b53b4a61b3
1 changed files with 14 additions and 12 deletions
|
|
@ -31,42 +31,44 @@ source configure_environment.sh
|
|||
|
||||
mkdir -p $ACT_HOME
|
||||
|
||||
here=$(pwd)
|
||||
srcfolder=$here/src
|
||||
|
||||
echo Building core library
|
||||
|
||||
git clone https://github.com/asyncvlsi/act.git
|
||||
cd ./act
|
||||
git clone https://github.com/asyncvlsi/act.git $srcfolder/act
|
||||
cd $srcfolder/act
|
||||
export VLSI_TOOLS_SRC=$(pwd)
|
||||
./configure $ACT_HOME
|
||||
./build
|
||||
make install
|
||||
make runtest
|
||||
cd ..
|
||||
cd $here
|
||||
|
||||
|
||||
echo Building stdlib
|
||||
|
||||
git clone https://github.com/asyncvlsi/stdlib.git
|
||||
cd stdlib
|
||||
git clone https://github.com/asyncvlsi/stdlib.git $srcfolder/stdlib
|
||||
cd $srcfolder/stdlib
|
||||
make install
|
||||
cd ..
|
||||
cd $here
|
||||
|
||||
|
||||
echo Building annotation library
|
||||
|
||||
git clone https://github.com/asyncvlsi/annotate.git
|
||||
cd annotate
|
||||
git clone https://github.com/asyncvlsi/annotate.git $srcfolder/annotate
|
||||
cd $srcfolder/annotate
|
||||
make install_inc
|
||||
make depend
|
||||
make
|
||||
make install
|
||||
cd ..
|
||||
cd $here
|
||||
|
||||
|
||||
echo Building actsim
|
||||
|
||||
git clone https://github.com/TheBitFighter/actsim/ -b set_rework
|
||||
cd actsim
|
||||
git clone https://github.com/TheBitFighter/actsim/ -b set_rework $srcfolder/actsim
|
||||
cd $srcfolder/actsim
|
||||
./configure
|
||||
./build.sh
|
||||
cd ..
|
||||
cd $here
|
||||
|
|
|
|||
Loading…
Reference in a new issue