forked from wbhart/mpir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
78 lines (50 loc) · 2.41 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Copyright 1996, 1997, 1999, 2000, 2001, 2002, 2006 Free Software Foundation,
Inc.
Copyright 2008 William Hart.
This file is part of the MPIR Library.
The MPIR Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.
The MPIR Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with the MPIR Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
INSTALLING MPIR
=================
These instructions are only for the impatient. Others should read the install
instructions in mpir.info. Use
info -f ./mpir.info
or in emacs
C-u C-h i mpir.info
Here are some brief instructions on how to install MPIR, and some examples to
help you get started using it. First you need to compile. Since you're
impatient, try this
./configure
make
make check <= VERY IMPORTANT!!
If that fails, or you care about the performance of MPIR, you need to read the
full instructions in the chapter "Installing MPIR" in the manual.
You should not skip the "make check" part; the risk that the MPIR sources are
miscompiled are unfortunately quite high. And if they indeed are, "make check"
is very likely to trigger the compiler-introduced bug.
Optionally, you can install the library with the following command. This will
be to /usr/local by default, and you'll probably need to be "root" to be able
to write there.
make install
To create the printable documentation from the texinfo source, type "make
mpir.dvi" or "make mpir.ps". This requires various "tex" commands.
If you are new to MPIR, it is a good idea you at least read the chapter "MPIR
Basics" in the manual.
Some known build problems are noted in the "Installing MPIR" chapter of
the manual. Please report other problems to http://groups.google.co.uk/group/mpir-devel/.
The MPIR web site is located here: http://wwww.mpir.org/.
----------------
Local variables:
mode: text
fill-column: 78
End: