build.Link.SectionSymbolFile
|
This property sets or refers to the link options for the active project regarding sections whose external defined symbols are to be output to a file. [CC-RH][CC-RX][CC-RL]
[Specification format]
build.Link.SectionSymbolFile = sectionlist
|
[Setting(s)]
|
|
sectionlist
|
Set the section whose external defined symbols are output to a file as a list of strings.
|
[Reference]
List of the section whose external defined symbols are output to a file
[Detailed description]
- | This property sets or refers to the link options for the active project regarding sections whose external defined symbols are to be output to a file. |
- | Add or change for the referred list to change the setting. |
[Example of use]
>>>sec = build.Link.SectionSymbolFile ... Refer the current setting and add the section whose external defined symbols are output to a file
>>>print sec
['R_1', 'R_2']
>>>sec.append('R_3')
>>>build.Link.SectionSymbolFile = sec
>>>print build.Link.SectionSymbolFile
['R_1', 'R_2', 'R_3']
|