This option specifies assemble options.
[Specification format]
- | Interpretation when omitted |
The ccrh driver interprets all specified options.
[Detailed description]
- | This option passes arg to the assembler as the assemble option. |
- | An error will occur if arg is a non-existent assemble option. |
- | An error will occur if arg is omitted. |
[Example of use]
- | To pass the -Xprn_path option to the assembler, describe as: |
>ccrh -Xasm_option=-Xprn_path -Xcommon=rh850 main.c
|
The example above has the same meaning as the following.
>ccrh -S -Xcommon=rh850 main.c
>asrh -Xprn_path -Xcommon=rh850 main.asm
|