-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
82 lines (67 loc) · 2.04 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
#
# Copyright (c) 2018 Jack Poulson <jack@hodgestar.com>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
option('disable_xmmintrin',
type : 'boolean',
value : false,
description : 'prevents usage of xmmintrin')
option('disable_fenv_disable_denorms',
type : 'boolean',
value : false,
description : 'prevents usage of FE_DFL_DISABLE_SSE_DENORMS_ENV')
option('disable_tcmalloc',
type : 'boolean',
value : true,
description : 'disable libtcmalloc allocation?')
option('disable_blas',
type : 'boolean',
value : false,
description : 'disable BLAS support?')
option('disable_mkl',
type : 'boolean',
value : false,
description : 'disable Intel MKL support?')
option('disable_openblas',
type : 'boolean',
value : false,
description : 'disable OpenBLAS support?')
option('use_64bit',
type : 'boolean',
value : true,
description : 'use 64-bit integers for representing indices?')
option('strong_hashes',
type : 'boolean',
value : false,
description : 'use a more expensive, but better supervariable hash?')
option('enable_timers',
type : 'boolean',
value : false,
description : 'enable code for timing components?')
option('enable_debug',
type : 'boolean',
value : false,
description : 'enable extra debugging assertions?')
option('enable_openmp',
type : 'boolean',
value : false,
description : 'demand OpenMP support?')
option('disable_openmp',
type : 'boolean',
value : false,
description : 'disable OpenMP support?')
option('disable_gcc_fma',
type : 'boolean',
value : false,
description : 'disable GCC FMA intrinsic fallback?')
option('disable_xlc_fma',
type : 'boolean',
value : false,
description : 'disable XLC FMA intrinsic fallback?')
option('ieee_sum',
type : 'boolean',
value : false,
description : 'enable IEEE double-mantissa summation?')