"PRC" <panruochen@xxxxxxxxx> writes: > a.c > ----------------------------- > static char mydata1[0x2000] __attribute__(( section(".1.c") )) ; > > mips-elf-objdump -h a.o > ----------------------------- > ... > 9 .1.c 00002000 00000000 00000000 00000210 2**2 > CONTENTS, ALLOC, LOAD, DATA > ... > > Can I change it to only `ALLOC', without using any `binutils' tool? You mean: treat it like a .bss section? No, gcc doesn't support that with the attribute syntax. Ian