aboutsummaryrefslogtreecommitdiff
path: root/.install_yosys.sh
blob: a9ab9c25e6da06203e4be79c60713bd2cfa392b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
  # Workaround moving ABC repo
  git apply ../.fix_yosys_abc.patch
  make
  make PREFIX=$INSTALL_DIR install
fi