Hi,
When I build my OpenMP application code, some warnings are raised on CCS console:
warning #10247-D: creating output section ".tdata" without a SECTIONS specification
warning #10247-D: creating output section ".tbss" without a SECTIONS specification
First of all, I'm not completely sure what are these sections, but anyway I tried to put them into some memory as below, but the build system did not handle them correctly -- The build system looks ignoring the placement for these sections. The warnings are still existing here.
SECTIONS {
.tdata > L2SRAM //Or, DDR3
.tbss > L2SRAM //Or, DDR3
}
I'm reading compiler user guide, especially TLS related explanations, for example, chapter 7 Thread-Local Storage Allocation and Addressing.
But still I can't understand what is intended by these sections in OpenMP runtime.
Could you please give me some insight for this ? What should I do for the warnings ?
Best Regards,
Naoki