Everything

-asmopt


アセンブル・オプションを指定します。

[指定形式]

-asmopt=arg

 

-

省略時解釈

コンパイル・ドライバが設定したアセンブラ・オプションのみをアセンブラに渡します。

[詳細説明]

-

argをアセンブル・オプションとして,アセンブラに渡します。

-

argを省略した場合は,エラーとなります。

[使用例]

-

-prn_pathオプションをアセンブラに渡します。

>ccrl -c -asmopt=-prn_path -cpu=S2 -dev=dr5f100pj.dvf main.c

 

上記の例で-asmoptで指定するオプションは以下の例と同じ効果を持ちます。

>ccrl -S -cpu=S2 -dev=dr5f100pj.dvf main.c
>asrl -prn_path -cpu=S2 -dev=dr5f100pj.dvf main.asm