This option specifies assemble options.
[Specification format]
- | Interpretation when omitted |
Only the assemble options specified by the compilation driver are passed to the assembler.
[Detailed description]
- | This option passes arg to the assembler as the assemble option. |
- | An error will occur if arg is omitted. |
[Example of use]
- | To pass the -prn_path option to the assembler, describe as: |
>ccrl -c -asmopt=-prn_path -cpu=S2 -dev=dr5f100pj.dvf main.c
|
The -asmopt option specified in the above example has the same effect as the following example.
>ccrl -S -cpu=S2 -dev=dr5f100pj.dvf main.c
>asrl -prn_path -cpu=S2 -dev=dr5f100pj.dvf main.asm
|