relax_call26_multi.ld 402 B

1234567891011121314
  1. /* Simple script for testing call26 relaxation via linker stubs.
  2. In this case, input sections text0 and text1 cannot share stubs
  3. because they are in different output sections. */
  4. OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
  5. OUTPUT_ARCH(nios2)
  6. ENTRY(_start)
  7. SECTIONS
  8. {
  9. _start = .;
  10. text0 0 : { *(text0) }
  11. text1 : { *(text1) }
  12. text2 0x40000000 : { *(text2) }
  13. }