-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmeson.options
More file actions
108 lines (96 loc) · 2.76 KB
/
meson.options
File metadata and controls
108 lines (96 loc) · 2.76 KB
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
# SPDX-FileCopyrightText: Contributors to the HPCToolkit Project
#
# SPDX-License-Identifier: Apache-2.0
option(
'tests',
type: 'feature',
description: 'Enable unit tests with meson test. (\'disabled\' only disables tests with extra dependencies)',
value: 'enabled',
)
option('manpages', type: 'feature', description: 'Include and install man pages')
option(
'manual',
type: 'feature',
description: 'Include and install the manual (HTML, EPUB)',
)
option(
'manual_pdf',
type: 'feature',
description: 'Include and install the manual (PDF)',
value: 'disabled',
)
option('hpcprof_mpi', type: 'feature', description: 'Build hpcprof-mpi')
option(
'hpcprof_mpi_tests',
type: 'feature',
description: 'Enable tests for hpcprof-mpi, which requires a working MPI launcher (mpiexec)',
value: 'disabled',
)
option('python', type: 'feature', description: 'Enable Python unwinder (experimental)')
option(
'xed',
type: 'feature',
value: 'enabled',
description: 'Enable Intel XED library for x86-64 native unwinding',
)
option('papi', type: 'feature', description: 'Enable PAPI metrics')
option('cuda', type: 'feature', description: 'Enable CUDA metrics')
option('level0', type: 'feature', description: 'Enable Level 0 metrics')
option('gtpin', type: 'feature', description: 'Enable Level 0 instrumentation metrics')
option('opencl', type: 'feature', description: 'Enable OpenCL metrics')
option('rocm', type: 'feature', description: 'Enable ROCm metrics')
option(
'dev_quality',
type: 'feature',
description: 'Enable tools/targets for static code quality (meson compile quality)',
)
option(
'hpcrun_use_auditor_by_default',
type: 'boolean',
value: true,
description: 'Set whether hpcrun should by default use LD_AUDIT for monitoring',
)
option(
'valgrind_annotations',
type: 'boolean',
value: false,
description: 'Inject annotations for Valgrind debugging',
)
option(
'hip_args',
type: 'array',
description: 'Arguments to pass to HIP compile line (i.e. <lang>_args)',
)
option(
'hip_link_args',
type: 'array',
description: 'Arguments to pass to HIP link line (i.e. <lang>_link_args)',
)
option(
'sycl_args',
type: 'array',
description: 'Arguments to pass to SYCL compile line (i.e. <lang>_args)',
)
option(
'sycl_link_args',
type: 'array',
description: 'Arguments to pass to SYCL link line (i.e. <lang>_link_args)',
)
option(
'rocprofiler_metrics_xml',
type: 'string',
value: '',
description: 'Full path to the metrics.xml file shipped by ROCprofiler',
)
option(
'docs_host_url',
type: 'string',
value: '',
description: 'Canonical URL where the manual will be hosted externally',
)
option(
'docs_versions_url',
type: 'string',
value: '',
description: 'URL of a JSON file listing remote versions of the documentation',
)