some plumbing but still need to remove sram generator target for asap7

This commit is contained in:
Harrison Liew
2019-08-31 20:04:35 -07:00
parent 859492c2a2
commit 6179a91a29
11 changed files with 140 additions and 17 deletions

View File

@@ -1,11 +1,15 @@
#!/usr/bin/env bash
# exit script if any command fails
# exit script if any command fails
set -e
set -o pipefail
# Initialize HAMMER and CAD-plugins
git submodule update --init --recursive vlsi/hammer
git submodule update --init --recursive vlsi/hammer-cad-plugins
git submodule update --init --recursive vlsi/hammer-cadence-plugins
git submodule update --init --recursive vlsi/hammer-synopsys-plugins
git submodule update --init --recursive vlsi/hammer-mentor-plugins
# Initialize HAMMER tech plugin
git submodule update --init --recursive vlsi/hammer-"$1"-plugin
if [[ $1 != *asap7* ]] && [[ $1 != *saed32* ]]; then
git submodule update --init --recursive vlsi/hammer-$1-plugin
fi