您好:
CCS6.1.0安装时自带c6000 v7.4.12的编译器,但是我看了OpenMP的说明文档,说是要v8以上的编译器,所以我就下载安装了v8.2.0,但是编译之后有
warning #10247-D: creating output section ".tdata" without a SECTIONS specification
warning #10247-D: creating output section ".tbss" without a SECTIONS specification
warning #10247-D: creating output section ".tbss" without a SECTIONS specification
我也在.cfg里面添加了这两个段,但是没有用,自动生成的linker.cmd里面还是没有这两个段,请问是什么原因?
program.sectMap[".tdata"] = new Program.SectionSpec();
program.sectMap[".tbss"] = new Program.SectionSpec();
program.sectMap[".tdata"].loadSegment = "DDR3";
program.sectMap[".tbss"].loadSegment = "DDR3";
CCS6.1.0、 bios6.46.04.53 、 ipc3.44.01.01 、 pdk2.0.2 、 xdctools3.32.01.22
谢谢!