Skip to content

Commit

Permalink
use F* branch taramana_dune_3.5 for the Windows build
Browse files Browse the repository at this point in the history
I could use a git submodule, but having it on `master` would
confuse Linux users, who don't need that branch. I am using
submodules on the `_release` branch, though.

This branch will no longer be needed once I switch to the
official opam 2.2 Windows build, which most likely requires
a Z3 upgrade.
  • Loading branch information
tahina-pro committed Oct 11, 2024
1 parent e2cf071 commit 27701bf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/package/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,12 @@ make_everparse() {
elif find_fstar="$(which fstar.exe)" ; then
export FSTAR_HOME=$(fixpath "$(dirname $find_fstar)"/..)
else
git clone https://github.com/FStarLang/FStar
if $is_windows ; then
fstar_branch_opt="--branch taramana_dune_3.5"
else
fstar_branch_opt=
fi
git clone $fstar_branch_opt https://github.com/FStarLang/FStar
export FSTAR_HOME=$(fixpath $PWD/FStar)
fi
else
Expand Down

0 comments on commit 27701bf

Please sign in to comment.