projects
/
cvc5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e2aa4e3
)
Fix broken GMP URL in get-win-dependencies script (#1493)
author
Andres Noetzli
<andres.noetzli@gmail.com>
Mon, 8 Jan 2018 18:05:59 +0000
(19:05 +0100)
committer
Andrew Reynolds
<andrew.j.reynolds@gmail.com>
Mon, 8 Jan 2018 18:05:59 +0000
(12:05 -0600)
contrib/get-win-dependencies
patch
|
blob
|
history
diff --git
a/contrib/get-win-dependencies
b/contrib/get-win-dependencies
index 2342a09ff5692886dabdb1f0565e7878e2bf20a7..964bdbff7099997c36566f2fc8c2d37995a2fc8e 100755
(executable)
--- a/
contrib/get-win-dependencies
+++ b/
contrib/get-win-dependencies
@@
-36,7
+36,7
@@
if [ -z "$HOST" ]; then
echo "WARNING:"
fi
-GMPVERSION=
5.1.0
+GMPVERSION=
6.1.2
BOOSTVERSION=1.55.0
BOOSTBASE=boost_1_55_0
@@
-84,7
+84,7
@@
echo
gmpprefix=`pwd` &&
mkdir src &&
cd src &&
- webget
ftp://ftp.gmplib.org/pub/gmp-$GMPVERSION
/gmp-$GMPVERSION.tar.bz2 gmp-$GMPVERSION.tar.bz2 &&
+ webget
https://gmplib.org/download/gmp
/gmp-$GMPVERSION.tar.bz2 gmp-$GMPVERSION.tar.bz2 &&
tar xfj gmp-$GMPVERSION.tar.bz2 &&
cd gmp-$GMPVERSION &&
./configure --host=$HOST --prefix="$gmpprefix" --enable-cxx ${BUILD_TYPE} &&