summaryrefslogtreecommitdiffstats
path: root/rules/libgmp.in
blob: f17a7c52206e4076ab79ec1d1c81f40424903e93 (plain)
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
#
# rules/libgmp.in
#
menuconfig LIBGMP
	tristate
	default n
	prompt "libgmp                        "
	help
	  Compiles the GNU Multiprecision libraries for your target system.

          See http://gmplib.org/ for info about it.

if LIBGMP

config LIBGMP_SHARED
	bool
	default y
	prompt "Create shared library"
	help
	  Create a shared library and install it into /usr/lib

config LIBGMP_STATIC
	bool
	default n
	prompt "Create static link library"
	help
	  Create a static link library and install it into /usr/lib.
	  Normally not needed.

endif