https://sourceware.org/bugzilla/show_bug.cgi?id=20114

--- Comment #12 from maamountki <maamountk at hotmail dot com> ---
(In reply to Andreas Krebbel from comment #11)
> Ok. Having a linker script with just a .got continues to work with your
> patch?

Yes. My LinuxONE Community Cloud VM has been expired I can not pull the linker
script that I used, But as I remember It look like this

SECTIONS
{
  . = 0x40000;
  .reginfo : { *(.reginfo) }
  .dynamic : { *(.dynamic) }
  .hash : { *(.hash) }
  .dynsym : { *(.dynsym) }
  .dynstr : { *(.dynstr) }
  .rel.dyn : { *(.rel.dyn) }

  . = 0x50000;
  .text : { *(.text) }

  . = 0x60000;
  .data : { *(.data) }
  HIDDEN (_gp = ALIGN (16) + 0x7ff0);
  .got : { *(.got) }
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to