Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix link to download mpir 3.0.0 #60

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Documentation/Installation.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ \subsection{Installation}\label{subsec:install}
\item Crypto++: Tested with version 7.0
\item yasm (for MPIR)
\item m4 (for MPIR)
\item autotools-dev, autoconf, libtool, texinfo (for MPIR)
\item A Rust compiler of at least version 1.47.0.
We use the nightly build, so we strongly recommend using this
as we use a lot of new features in various places.
Expand Down Expand Up @@ -81,9 +82,10 @@ \subsubsection{Installing MPIR, OpenSSL and Crypto++}
cd ${mylocal}

# install MPIR 3.0.0
curl -O 'http://mpir.org/mpir-3.0.0.tar.bz2'
curl -O 'https://github.com/wbhart/mpir/archive/refs/tags/mpir-3.0.0.tar.gz'
tar xf mpir-3.0.0.tar.bz2
cd mpir-3.0.0
cd mpir-mpir-3.0.0
./autogen.sh
./configure --enable-cxx --prefix="${mylocal}/mpir"
make && make check && make install

Expand Down