7ad60734b1
Added "static-build" option in the meson_options.txt. Setting it to "true" allows static building. Signed-off-by: Tero Tervala <tero.tervala@unikie.com> Message-Id: <20220629163557.932298-1-tero.tervala@unikie.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
12 lines
601 B
Meson
12 lines
601 B
Meson
option('tools', type: 'boolean', value: true,
|
|
description: 'Build tools')
|
|
option('assume-mask', type: 'integer', value: 0,
|
|
description: 'Control the assumptions made (e.g. risking security issues) in the code.')
|
|
option('yaml', type: 'feature', value: 'auto',
|
|
description: 'YAML support')
|
|
option('valgrind', type: 'feature', value: 'auto',
|
|
description: 'Valgrind support')
|
|
option('python', type: 'feature', value: 'auto',
|
|
description: 'Build pylibfdt Python library')
|
|
option('static-build', type: 'boolean', value: false,
|
|
description: 'Build static binaries')
|