You can specify comments in the configuration file with the # sign. Everything from the # on will be ignored.
The algorithm to determine which file is used as a configuration file is decribed in 3.1.5 on page 70.
When the compiler has finished reading the configuration file, it continues to treat the command line options.
One of the command-line options allows you to specify a second configuration file: Specifying @foo on the command line will open file foo, and read further options from there. When the compiler has finished reading this file, it continues to process the command line.
The configuration file allows some kind of preprocessing. It understands the following directives, which you should place on the first column of a line :
They work the same way as their {$...} counterparts in Pascal. All the default defines used to compile source code are also defined while processing the configuration file. For example, if the target compiler is an intel 80x86 compatile linux platform, both cpu86 and linux will be defined while interpreting the configuration file. For the possible default defines when compiling, consult Appendix G of the Programmers guide.
What follows is a description of the different directives.