From 85f214a02501b11aa5e69509b27e4684665b2e1d Mon Sep 17 00:00:00 2001 From: Thomas Kidd Date: Thu, 1 Feb 2024 09:07:14 -0600 Subject: [PATCH] Revert "reverted the verilator checkout to checkout master" This reverts commit 942a2804c33a28cf31171f4a203144a91f50fb15. --- bin/wally-tool-chain-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/wally-tool-chain-install.sh b/bin/wally-tool-chain-install.sh index 79a556571..473bc074b 100755 --- a/bin/wally-tool-chain-install.sh +++ b/bin/wally-tool-chain-install.sh @@ -125,7 +125,8 @@ git clone https://github.com/verilator/verilator # Only first time unset VERILATOR_ROOT # For bash cd verilator git pull # Make sure git repository is up-to-date -git checkout master # Use development branch (e.g. recent bug fixes) +git checkout v5.016 # Use development branch (e.g. recent bug fixes) +#git checkout master # Use development branch (e.g. recent bug fixes) autoconf # Create ./configure script ./configure # Configure and create Makefile make -j ${NUM_THREADS} # Build Verilator itself (if error, try just 'make')