Skip to content

Commit 493c4c3

Browse files
Merge pull request #1313 from jordancarlin/sail_0.19
Update sail compiler to 0.19
2 parents 1330f78 + 5d24933 commit 493c4c3

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

bin/wally-tool-chain-install.sh

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -438,15 +438,11 @@ fi
438438
# is a functional programming language suited to formal verification.
439439
section_header "Installing/Updating Sail Compiler"
440440
STATUS="sail_compiler"
441-
if [ ! -e "$RISCV"/bin/sail ]; then
442-
cd "$RISCV"
443-
wget -nv --retry-connrefused $retry_on_host_error --output-document=sail.tar.gz https://github.com/rems-project/sail/releases/latest/download/sail.tar.gz
444-
tar xz --directory="$RISCV" --strip-components=1 -f sail.tar.gz
445-
rm -f sail.tar.gz
446-
echo -e "${SUCCESS_COLOR}Sail Compiler successfully installed/updated!${ENDC}"
447-
else
448-
echo -e "${SUCCESS_COLOR}Sail Compiler already installed.${ENDC}"
449-
fi
441+
cd "$RISCV"
442+
wget -nv --retry-connrefused $retry_on_host_error --output-document=sail.tar.gz https://github.com/rems-project/sail/releases/latest/download/sail.tar.gz
443+
tar xz --directory="$RISCV" --strip-components=1 -f sail.tar.gz
444+
rm -f sail.tar.gz
445+
echo -e "${SUCCESS_COLOR}Sail Compiler successfully installed/updated!${ENDC}"
450446

451447
# RISC-V Sail Model (https://github.com/riscv/sail-riscv)
452448
# The RISC-V Sail Model is the golden reference model for RISC-V. It is written in Sail (described above)

0 commit comments

Comments
 (0)