Skip to content

Commit

Permalink
Merge pull request #6140 from gudeh/patch-1
Browse files Browse the repository at this point in the history
Update Yosys version on DependencyInstaller.sh
  • Loading branch information
maliberty authored Nov 22, 2024
2 parents 8396d08 + a4902d7 commit 62c4360
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions etc/DependencyInstaller.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ _versionCompare() {
}

_equivalenceDeps() {
yosysVersion=yosys-0.43
yosysVersion=0.47
eqyYosysVersion=yosys-0.47

# yosys
yosysPrefix=${PREFIX:-"/usr/local"}
Expand All @@ -29,7 +30,7 @@ _equivalenceDeps() {
eqyPrefix=${PREFIX:-"/usr/local"}
if ! command -v eqy &> /dev/null; then (
cd "${baseDir}"
git clone --depth=1 -b "${yosysVersion}" https://github.com/YosysHQ/eqy
git clone --depth=1 -b "${eqyYosysVersion}" https://github.com/YosysHQ/eqy
cd eqy
export PATH="${yosysPrefix}/bin:${PATH}"
make -j $(nproc) PREFIX="${eqyPrefix}"
Expand All @@ -41,7 +42,7 @@ _equivalenceDeps() {
sbyPrefix=${PREFIX:-"/usr/local"}
if ! command -v sby &> /dev/null; then (
cd "${baseDir}"
git clone --depth=1 -b "${yosysVersion}" --recursive https://github.com/YosysHQ/sby
git clone --depth=1 -b "${eqyYosysVersion}" --recursive https://github.com/YosysHQ/sby
cd sby
export PATH="${eqyPrefix}/bin:${PATH}"
make -j $(nproc) PREFIX="${sbyPrefix}" install
Expand Down

0 comments on commit 62c4360

Please sign in to comment.