pck_embed.legacy.ld 306 B

1234567891011
  1. SECTIONS
  2. {
  3. /* The exporter will patch this section to enclose the data appended to the executable (embedded PCK) */
  4. pck 0 (INFO) : AT ( ADDR (.rodata) + SIZEOF (.rodata) )
  5. {
  6. /* binutils < 2.30 need some actual content for the linker not to discard the section */
  7. BYTE(0);
  8. }
  9. }
  10. INSERT AFTER .rodata;