aboutsummaryrefslogtreecommitdiff
path: root/.install_yosys.sh
blob: b4fa898499c9dd5b676f09d356b6e2f8448f37d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
set -e
# Install Yosys (https://github.com/cliffordwolf/yosys)
if [ ! -f $INSTALL_DIR/bin/yosys ]; then
  mkdir -p $INSTALL_DIR
  git clone https://github.com/cliffordwolf/yosys.git
  cd yosys
  git pull
  git checkout yosys-0.7
  make
  make PREFIX=$INSTALL_DIR install
fi