This option outputs external defined symbols to the symbol address file.
[Specification format]
-FSymbol=section[,section]...
|
- | Interpretation when omitted |
None
[Detailed description]
- | This option outputs the external defined symbols in section section to a file (symbol address file) in the form of assembler directives.
The file name is "output file name.fsy". |
[Example of use]
- | To output the external defined symbols in sections "sct2" and "sct3" to symbol address file "test.fsy", describe as: |
>rlink a.obj b.obj -fsymbol=sct2,stc3 -output=test.abs
|
The output example of symbol address file "test.fsy" is shown below.
;RENESAS OPTIMIZING LINKER GENERATED FILE xxxx.xx.xx
;fsymbol = sct2,sct3
;SECTION NAME = sct2
.public _f
_f .equ 0x0
.public _g
_g .equ 0x16
;SECTION NAME = sct3
.public _main
_main .equ 0x20
|
[Remark]
- | If the -form={object|relocate|library} option or -strip option is specified, this option will be invalid. |