This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

how to place large data arrays into one section in ccs4.1.2?

I want to place large data arrays into one section from the .ebss.i have many c++ and c files in my project,i put some large data array into "mysection"  in every c++ file .for example:

#pragma DATA_SECTION("mysection")
   char param[LINELEN+1];

 #pragma DATA_SECTION("mysection")
    static char errstring[200];

when i compiled,i found this was not work.i want to place param and errstring arrays into "mysection".what should i do? please help  me!