[PATCH 6/6] bfd: strip symbols not representable in COFF/PE symbol table
Alan Modra
amodra@gmail.com
Thu Mar 4 13:27:06 GMT 2021
On Thu, Mar 04, 2021 at 10:06:27AM +0100, Jan Beulich wrote:
> On 04.03.2021 07:15, Alan Modra wrote:
> > On Tue, Mar 02, 2021 at 10:50:59AM +0100, Jan Beulich via Binutils wrote:
> >> + (_("%pB: stripping non-representable symbol '%s' (value %"BFD_VMA_FMT"x)"),
> >
> > overlong line.
>
> What am I to do in this case? From other projects I'm used to the
> rule that format strings, to remain grep-able, are allowed to
> run past the normal line length limit.
You're already using string literal concatenation there. I'd split
(with spaces around BFD_VMA_FMT) like this:
(_("%pB: stripping non-representable symbol '%s' (value "
"%" BFD_VMA_FMT "x)"),
or if you prefer, with the "%" left on the first line.
--
Alan Modra
Australia Development Lab, IBM
More information about the Binutils
mailing list