This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
magic_version=$(magic --version) | |
if [ $magic_version != 8.3.160 ]; then | |
echo "magic version too old. either update it or make the pdk with make pdk-nonnative" | |
exit | |
fi | |
git clone git@github.com:efabless/caravel_user_project.git | |
export PDK_ROOT=$(pwd)/pdk | |
export OPENLANE_ROOT=$(pwd)/openlane | |
export OPENLANE_TAG=v0.15 |