This option specifies the file that is included at the top of the compilation unit.
[Specification format]
-preinclude=file[,file]...
|
- | Interpretation when omitted |
It is assumed that the file that is included at the top of the compilation unit does not exist.
[Detailed description]
- | This option specifies the file that is included at the top of the compilation unit as file. |
- | If the file specified as file is not found, an error will occur. |
- | This option starts searching from the folder that started the complier if the file is specified by its relative path. |
[Example of use]
- | To include file "sample.h" at the top of the compilation unit, describe as: |
>ccrl -preinclude=sample.h -cpu=S2 -dev=dr5f100pj.dvf main.c
|