aboutsummaryrefslogtreecommitdiffhomepage
path: root/dev/build/plugin-versions/bignums.sh
diff options
context:
space:
mode:
authorGravatar Michael Soegtrop <michael.soegtrop@intel.com>2018-06-15 18:57:00 +0200
committerGravatar Théo Zimmermann <theo.zimmermann@univ-paris-diderot.fr>2018-06-25 16:37:02 +0200
commitcb885e8c70a75043ff89e117c29cbb5dc22ff16f (patch)
tree9b9d84ef9f0b7151c33bb889493679e01aad92d6 /dev/build/plugin-versions/bignums.sh
parent915452f9a73d25e45131edb08531c29a79ab7020 (diff)
Fix for issue 7707: include Ltac2 and Equations in Windows build
On the way I also fixed some minor issues with calling MakeCoq_MinGW from cygwin.
Diffstat (limited to 'dev/build/plugin-versions/bignums.sh')
-rwxr-xr-xdev/build/plugin-versions/bignums.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/dev/build/plugin-versions/bignums.sh b/dev/build/plugin-versions/bignums.sh
new file mode 100755
index 000000000..8a4ddf5fc
--- /dev/null
+++ b/dev/build/plugin-versions/bignums.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+case "$1" in
+ git-master|/cygdrive*)
+ # First get the SHA of master/HEAD and then download a zip of exactly this state
+ BIGNUMS_SHA=$(git ls-remote 'https://github.com/coq/bignums' refs/heads/master | cut -f 1)
+
+ echo https://github.com/coq/bignums/archive "$BIGNUMS_SHA" zip 1 "bignums-$BIGNUMS_SHA"
+ ;;
+ *)
+ echo https://github.com/coq/bignums/archive V8.8.0 zip 1 bignums-V8.8+beta1
+ ;;
+esac