CCS4.2
SYS/BIOS 6.31.02.23
XDCtools 3.20.07.86
In a SYS/BIOS project, how do I force the linker to generate the output sections from my code in the order that I specify?
For example, I want the following sections to be in contiguous memory order:
.text:_c_int00
.text
.cinit
...
.data
The default settings place the segments in a different order. I can put every setting into it's own memory section, but that relies on me to continually change my sections sizes and addersses as I develop the code.
I've tried some of the options as described in sections 5.3.1 and 5.3.2 in the Bios_User_Guide without much luck.
When I exclude the sections with by adding a Program.sectionsExclude = "*" to the CFG file I get similar results.
Thanks,
Peter Steinberg