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!