Browse Source

esp8266: Move .rodata where it belongs with -mforce-l32 help.

pull/1956/merge
Paul Sokolovsky 9 years ago
parent
commit
ef0c5db2ed
  1. 2
      esp8266/Makefile
  2. 3
      esp8266/esp8266.ld

2
esp8266/Makefile

@ -48,7 +48,7 @@ CFLAGS += -g
COPT = -O0
else
CFLAGS += -fdata-sections -ffunction-sections
COPT += -Os -DNDEBUG
COPT += -Os -mforce-l32 -DNDEBUG
LDFLAGS += --gc-sections
endif

3
esp8266/esp8266.ld

@ -155,6 +155,9 @@ SECTIONS
*/frozen.o(.rodata.mp_frozen_sizes) /* frozen modules */
*/frozen.o(.rodata.mp_frozen_content) /* frozen modules */
/* for -mforce-l32 */
build/*.o(.rodata*)
_irom0_text_end = ABSOLUTE(.);
} >irom0_0_seg :irom0_0_phdr

Loading…
Cancel
Save