relax_jmp.ld 233 B

1234567891011
  1. /* Simple script for testing relaxation */
  2. OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
  3. OUTPUT_ARCH(nios2)
  4. ENTRY(_start)
  5. SECTIONS
  6. {
  7. _start = .;
  8. text2 0 : { *(text2) }
  9. text1 0x8000 : { *(text1) }
  10. }