-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathmeson_options.txt
199 lines (160 loc) · 5.55 KB
/
meson_options.txt
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
option('modules',
type : 'boolean',
value : true,
description : 'option to install Fortran modules')
option('ciface',
type : 'boolean',
value : true,
description : 'whether to build the C interfaces')
option('pythoniface',
type : 'boolean',
value : false,
description : 'whether to build the Python interfaces in double precision')
option('examples',
type : 'boolean',
value : false,
description : 'whether to generate the examples')
option('tests',
type : 'boolean',
value : false,
description : 'whether to generate the tests')
option('binaries',
type : 'boolean',
value : false,
description : 'whether to generate the binaries')
option('single',
type : 'boolean',
value : true,
description : 'whether to generate the single precision library, tests and examples')
option('double',
type : 'boolean',
value : true,
description : 'whether to generate the double precision library, tests and examples')
option('quadruple',
type : 'boolean',
value : false,
description : 'whether to generate the quadruple precision library, tests and examples')
option('ssids',
type : 'boolean',
value : true,
description : 'whether to build ssids')
option('libblas',
type : 'string',
value : 'openblas',
description : 'BLAS library against which to link')
option('liblapack',
type : 'string',
value : 'openblas',
description : 'LAPACK library against which to link')
option('libhsl',
type : 'string',
value : 'hsl_subset',
description : 'HSL library against which to link')
option('libcutest_single',
type : 'string',
value : 'cutest_single',
description : 'CUTEST library in single precision against which to link')
option('libcutest_double',
type : 'string',
value : 'cutest_double',
description : 'CUTEST library in double precision against which to link')
option('libcutest_quadruple',
type : 'string',
value : 'cutest_quadruple',
description : 'CUTEST library in quadruple precision against which to link')
option('libwsmp',
type : 'string',
value : 'wsmp',
description : 'WSMP library against which to link')
option('libpardiso',
type : 'string',
value : 'pardiso',
description : 'PARDISO library against which to link')
option('libspmf',
type : 'string',
value : 'spmf',
description : 'SPMF library against which to link')
option('libpastixf',
type : 'string',
value : 'pastixf',
description : 'PASTIXF library against which to link')
option('libsmumps',
type : 'string',
value : 'smumps',
description : 'Single-precision MUMPS library against which to link')
option('libdmumps',
type : 'string',
value : 'dmumps',
description : 'Double-precision MUMPS library against which to link')
option('libampl',
type : 'string',
value : 'ampl',
description : 'AMPL library against which to link')
option('libhwloc',
type : 'string',
value : 'hwloc',
description : 'HWLOC library against which to link')
option('libblas_path',
type : 'array',
value : [],
description : 'Additional directories to search for the BLAS library')
option('liblapack_path',
type : 'array',
value : [],
description : 'Additional directories to search for the LAPACK library')
option('libhsl_path',
type : 'array',
value : [],
description : 'Additional directories to search for the HSL library')
option('libcutest_path',
type : 'array',
value : [],
description : 'Additional directories to search for the CUTEST libraries')
option('libwsmp_path',
type : 'array',
value : [],
description : 'Additional directories to search for the WSMP library')
option('libpardiso_path',
type : 'array',
value : [],
description : 'Additional directories to search for the PARDISO library')
option('libspmf_path',
type : 'array',
value : [],
description : 'Additional directories to search for the SPMF library')
option('libpastixf_path',
type : 'array',
value : [],
description : 'Additional directories to search for the PASTIXF library')
option('libmumps_path',
type : 'array',
value : [],
description : 'Additional directories to search for the MUMPS libraries')
option('libampl_path',
type : 'array',
value : [],
description : 'Additional directories to search for the AMPL library library')
option('libhwloc_path',
type : 'array',
value : [],
description : 'Additional directory to search for the HWLOC library')
option('libhwloc_include',
type : 'array',
value : [],
description : 'Additional directories to search for the HWLOC header files')
option('libhsl_modules',
type : 'array',
value : [],
description : 'Additional directories to search for the HSL modules')
option('libcutest_modules',
type : 'array',
value : [],
description : 'Additional directories to search for the CUTEST modules')
option('int64',
type : 'boolean',
value : false,
description : 'Compile GALAHAD with 64-bit integer')
option('multiprecision',
type : 'boolean',
value : false,
description : 'Compile GALAHAD with -DMULTIPRECISION to have a different suffix for each C routine')