-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
35 lines (34 loc) · 2.48 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
option('disable-builtins', type: 'boolean', value: false,
description: 'Tell the compiler not to generate builtin functions.',
yield: true)
option('disable-stack-protection', type: 'boolean', value: true,
description: 'Tell the compiler not to insert stack protection calls.', yield: true)
option('disable-rtti', type : 'boolean', value: true, yield: true)
option('disable-exceptions', type : 'boolean', value: true, yield: true)
option('enable-threading', type: 'boolean', value: true, yield: true)
option('enable-pedantic', type: 'boolean', value: false)
option('enable-pedantic-error', type: 'boolean', value: false)
option('hide-unimplemented-libc-apis', type: 'boolean', value: false,
description: 'Make unimplemented libc functions invisible to the compiler.',
yield: true)
option('enable-gnu-extensions', type: 'boolean', value: true,
description: 'Enable GNU libc extensions.',
yield: true)
option('use-libc-subproject', type: 'boolean', value: true, yield: true,
description: 'When true, use the subproject defined in the libc-subproject option. An alternate approach is to override c_stdlib in your cross files.')
option('libc-subproject', type: 'array',
value: ['libc', 'libc_dep', 'libc_hosted_native_dep'],
yield: true,
description: 'This array is used in combination with use-libc-subproject. The first entry is the subproject name. The second is the cross-compilation dependency to use. The third value is optional. If used, it is a native dependency to use with native library targets.')
option('libcxx-use-compiler-rt', type: 'boolean', value: false, yield: true,
description: 'Use compiler-rt to supply builtin functionality')
option('libcxx-use-llvm-libunwind', type: 'boolean', value: true, yield: true)
option('libcxx-thread-library', type: 'combo', choices: ['', 'none', 'pthread', 'ea-framework'], value: 'pthread', yield: true)
option('libcxx-has-external-thread-api', type: 'boolean', value: false, yield: true)
option('libcxx-build-external-thread-api', type: 'boolean', value: false, yield: true)
option('libcxx-enable-chrono', type: 'boolean', value: true, yield: true)
option('libcxx-enable-filesystem', type: 'boolean', value: false, yield: true)
option('libcxx-enable-stdinout', type: 'boolean', value: true, yield: true)
option('libcxx-default-newdelete', type: 'boolean', value: true, yield: true)
option('libcxx-silent-terminate', type: 'boolean', value: true, yield: true)
option('libcxx-monotonic-clock', type: 'boolean', value: true, yield: true)