resetting manifest requested domain to floor
[platform/upstream/gmp.git] / INSTALL
1 Copyright 1996, 1997, 1999, 2000, 2001, 2002, 2006 Free Software Foundation,
2 Inc.
3
4 This file is part of the GNU MP Library.
5
6 The GNU MP Library is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or (at your
9 option) any later version.
10
11 The GNU MP Library is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14 License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.
18
19
20
21
22
23                           INSTALLING GNU MP
24                           =================
25
26
27 These instructions are only for the impatient.  Others should read the install
28 instructions in gmp.info.  Use
29
30         info -f doc/gmp.info
31
32 from the gmp source directory.
33
34 Here are some brief instructions on how to install GMP.  First you need to
35 compile.  Since you're impatient, try this
36
37         ./configure
38         make
39         make check              <= VERY IMPORTANT!!
40
41 If that fails, or you care about the performance of GMP, you need to read the
42 full instructions in the chapter "Installing GMP" in the manual.
43
44 You should not skip the "make check" part; the risk that the GMP sources are
45 miscompiled are unfortunately quite high.  And if they indeed are, "make check"
46 is very likely to trigger the compiler-introduced bug.
47
48 Optionally, you can install the library with the following command.  This will
49 be to /usr/local by default, and you'll probably need to be "root" to be able
50 to write there.
51
52         make install
53
54 To create the printable documentation from the texinfo source, type "make
55 gmp.dvi" or "make gmp.ps".  This requires various "tex" commands.
56
57 If you are new to GMP, it is a good idea you at least read the chapter "GMP
58 Basics" in the manual.
59
60 Some known build problems are noted in the "Installing GMP" chapter of
61 the manual.  Please report other problems to gmp-bugs@gmplib.org.
62
63 The GMP web site is located here: http://gmplib.org/.
64
65
66 ----------------
67 Local variables:
68 mode: text
69 fill-column: 78
70 End: