This flag causes bfd and gold to use a longer PLT format on ARM that
allows for the offset between the PLT and the GOT to exceed 256MB.
It seems unlikely that we would need to implement long PLTs because
by default we lay out .plt at the end of the executable segment (as
opposed to the other linkers, which lay it out at the beginning),
which means that the size of the non-relro part of the r/w segment
would need to exceed 256MB before a long PLT becomes necessary.
Even if we did implement long PLTs, I think it should be done by
recalculating the size of .plt as part of our convergent address
assignment loop, rather than requiring the user to request a long
PLT explicitly.
In any event, we would end up ignoring the flag, so this patch does so.