16 lines
517 B
Meson
16 lines
517 B
Meson
option('buildTests',
|
|
type : 'boolean',
|
|
value : false,
|
|
description : 'Build test suite',
|
|
yield: true
|
|
)
|
|
|
|
option('CPUFunctionAlignment',
|
|
type : 'integer',
|
|
min : 1,
|
|
value : 4096,
|
|
description : '''Indicates the alignment for the main emulator CPU function.
|
|
This is a large function that may cross page boundaries, which impacts performance.
|
|
We recommend setting this value for the architecture own page size.
|
|
This requires the GNU compiler to work.'''
|
|
) |