< Compile Options / Assemble and Linkage Options >
[Format]
-lnkopt=["]<linkage option>["]
|
[Description]
- | This option specifies the linkage options to pass to rlink with a string. |
- | Multiple options can be specified by enclosing them with double-quote marks ("). |
[Example]
ccrx -isa=rxv1 -output=abs=tp.abs -lnkopt="-start=P,C,D/100,B/8000" tp1.c tp2.c
|
The above description has the same meaning as the following three command lines:
ccrx -isa=rxv1 -output=src tp1.c tp2.c
asrx -isa=rxv1 tp1.src tp2.src
rlink -start=P,C,D/100,B/8000 -form=abs -output=tp tp1.obj tp2.obj
|
[Remarks]
- | If this option is specified for more than one time, all specified linkage options are valid. |
- | A single -lnkopt option can only take a single linkage option. To pass multiple linkage options, specify -lnkopt options as many times as the number of linkage options you require. |