Option files are a simple list of records in which each field occupies its own line and in which the records themselves are separated by blank lines. Comments may appear on their own line anywhere within the file and are preceded by semicolons. Whitespace is allowed before the semicolon.
The files can contain the following types of record:
cl_target_option
structure.
Var
properties.
gcc_options
structure, but these variables are also stored in
the cl_target_option
structure. The variables are saved in the
target save code and restored in the target restore code.
#ifdef
sequences to properly set up the initialization. These records have
two fields: the string ‘SourceInclude’ and the name of the
include file.
Name(
name)
Enum
option properties.
Type(
type)
Var
.
UnknownError(
message)
UnknownError
, a
generic error message is used. message should contain a single
‘%qs’ format, which will be used to format the invalid argument.
Enum(
name)
String(
string)
Value(
value)
int
) should be used for the given string.
Canonical
DriverOnly
Undocumented
property).
By default, all options beginning with “f”, “W” or “m” are
implicitly assumed to take a “no-” form. This form should not be
listed separately. If an option beginning with one of these letters
does not have a “no-” form, you can use the RejectNegative
property to reject it.
The help text is automatically line-wrapped before being displayed. Normally the name of the option is printed on the left-hand side of the output and the help text is printed on the right. However, if the help text contains a tab character, the text to the left of the tab is used instead of the option's name and the text to the right of the tab forms the help text. This allows you to elaborate on what type of argument the option takes.
target_flags
(see Run-time Target) for
each mask name x and set the macro MASK_
x to the
appropriate bitmask. It will also declare a TARGET_
x
macro that has the value 1 when bit MASK_
x is set and
0 otherwise.
They are primarily intended to declare target masks that are not associated with user options, either because these masks represent internal switches or because the options are not available on all configurations and yet the masks always need to be defined.