We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 503fce7 commit 45288ebCopy full SHA for 45288eb
bin/build_dependencies_unix.sh
@@ -273,7 +273,15 @@ else
273
echo --------------------------------------------
274
echo
275
276
- curl -O https://ftp.gnu.org/gnu/mpfr/mpfr-$MPFRVER.tar.gz
+ if [ $USE_GMP_GITHUB_MIRROR = "yes" ]; then
277
+ if [ ! -d "gmp_mirror" ] ; then
278
+ git clone https://github.com/oscarbenjamin/gmp_mirror.git
279
+ fi
280
+ cp gmp_mirror/mpfr-$MPFRVER.tar.gz .
281
+ else
282
+ curl -O https://ftp.gnu.org/gnu/mpfr/mpfr-$MPFRVER.tar.gz
283
284
+
285
tar xf mpfr-$MPFRVER.tar.gz
286
cd mpfr-$MPFRVER
287
./configure --prefix=$PREFIX\
0 commit comments