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
|
mkdir -p $ACT_HOME
|
||||||
|
|
||||||
|
here=$(pwd)
|
||||||
|
srcfolder=$here/src
|
||||||
|
|
||||||
echo Building core library
|
echo Building core library
|
||||||
|
|
||||||
git clone https://github.com/asyncvlsi/act.git
|
git clone https://github.com/asyncvlsi/act.git $srcfolder/act
|
||||||
cd ./act
|
cd $srcfolder/act
|
||||||
export VLSI_TOOLS_SRC=$(pwd)
|
export VLSI_TOOLS_SRC=$(pwd)
|
||||||
./configure $ACT_HOME
|
./configure $ACT_HOME
|
||||||
./build
|
./build
|
||||||
make install
|
make install
|
||||||
make runtest
|
make runtest
|
||||||
cd ..
|
cd $here
|
||||||
|
|
||||||
|
|
||||||
echo Building stdlib
|
echo Building stdlib
|
||||||
|
|
||||||
git clone https://github.com/asyncvlsi/stdlib.git
|
git clone https://github.com/asyncvlsi/stdlib.git $srcfolder/stdlib
|
||||||
cd stdlib
|
cd $srcfolder/stdlib
|
||||||
make install
|
make install
|
||||||
cd ..
|
cd $here
|
||||||
|
|
||||||
|
|
||||||
echo Building annotation library
|
echo Building annotation library
|
||||||
|
|
||||||
git clone https://github.com/asyncvlsi/annotate.git
|
git clone https://github.com/asyncvlsi/annotate.git $srcfolder/annotate
|
||||||
cd annotate
|
cd $srcfolder/annotate
|
||||||
make install_inc
|
make install_inc
|
||||||
make depend
|
make depend
|
||||||
make
|
make
|
||||||
make install
|
make install
|
||||||
cd ..
|
cd $here
|
||||||
|
|
||||||
|
|
||||||
echo Building actsim
|
echo Building actsim
|
||||||
|
|
||||||
git clone https://github.com/TheBitFighter/actsim/ -b set_rework
|
git clone https://github.com/TheBitFighter/actsim/ -b set_rework $srcfolder/actsim
|
||||||
cd actsim
|
cd $srcfolder/actsim
|
||||||
./configure
|
./configure
|
||||||
./build.sh
|
./build.sh
|
||||||
cd ..
|
cd $here
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue