better source paths

This commit is contained in:
Fabian Posch 2025-01-09 14:14:13 +01:00
parent f60351815b
commit b53b4a61b3

View file

@ -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