@@ -294,7 +294,7 @@ print_mcu (const avr_mcu_t *mcu)
: "\t%{mabsdata}");
// -m[no-]rodata-in-ram basically affects linking, but sanity-check early.
- fprintf (f, "*cc1_misc:\n\t%%(check_rodata_in_ram)\n\n");
+ fprintf (f, "*cc1_rodata_in_ram:\n\t%%(check_rodata_in_ram)\n\n");
// avr-gcc specific specs for assembling / the assembler.
@@ -319,8 +319,6 @@ print_mcu (const avr_mcu_t *mcu)
? "\t%{mno-skip-bug}"
: "\t%{!mskip-bug: -mno-skip-bug}");
- fprintf (f, "*asm_misc:\n" /* empty */ "\n\n");
-
// avr-specific specs for linking / the linker.
int wrap_k =
@@ -361,7 +359,7 @@ print_mcu (const avr_mcu_t *mcu)
}
// -m[no-]rodata-in-ram affects linking. Sanity check its usage.
- fprintf (f, "*link_misc:\n\t%%(check_rodata_in_ram)\n\n");
+ fprintf (f, "*link_rodata_in_ram:\n\t%%(check_rodata_in_ram)\n\n");
// Specs known to GCC.
@@ -36,7 +36,7 @@ along with GCC; see the file COPYING3. If not see
"%(cc1_errata_skip) " \
"%(cc1_rmw) " \
"%(cc1_absdata) " \
- "%(cc1_misc) "
+ "%(cc1_rodata_in_ram) "
#undef CC1PLUS_SPEC
#define CC1PLUS_SPEC \
@@ -54,8 +54,7 @@ along with GCC; see the file COPYING3. If not see
"%(asm_relax) " \
"%(asm_rmw) " \
"%(asm_gccisr) " \
- "%(asm_errata_skip) " \
- "%(asm_misc) "
+ "%(asm_errata_skip) "
#define LINK_RELAX_SPEC \
"%{mrelax:--relax} "
@@ -67,7 +66,7 @@ along with GCC; see the file COPYING3. If not see
"%(link_text_start) " \
"%(link_relax) " \
"%(link_pmem_wrap) " \
- "%(link_misc) " \
+ "%(link_rodata_in_ram) " \
"%{shared:%eshared is not supported} "
#undef LIB_SPEC