Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1303807
| From | Alexandre Oliva <oliva@gnu.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] ld-version: fix it on Fedora |
| Date | 2016-01-07 20:00 +0100 |
| Message-ID | <qOnWX-3Gz-27@gated-at.bofh.it> (permalink) |
| References | <qOn0U-31l-25@gated-at.bofh.it> |
| Organization | Free thinker, not speaking for the GNU Project |
On Jan 7, 2016, "Michael S. Tsirkin" <mst@redhat.com> wrote:
> On Fedora 23, ld --version outputs:
> GNU ld version 2.25-15.fc23
> But ld-version.sh fails to parse this
On gnewsense 3, ld --version outputs:
GNU ld (GNU Binutils for Debian) 2.20.1-system.20100303
Copyright [...]
The date at the end severely confuses the version parser.
Furthermore, awk is mawk, whose gsub takes ')' as grouping, so it
complains about the missing '('.
Also, once a[1] is multiplied by 1e7, mawk's print spits out the number
in exponential notation, which confuses the -lt test. In order to avoid
that falling back to floating-point numbers, I've used smaller
multipliers and concatenated (truncated) integers. Yuck.
I've modified the script so that it takes the - as a separator too, and
so that it works on both gawk and mawk. Here's the ld-version.sh that
worked for me. I guess this will have to be combined with your patch
somehow.
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
{
gsub(".*[)]", "");
split($1,a, "[-.]");
printf "%i%04i\n", a[1]*10000 + a[2]*100 + a[3], (a[4]*100 + a[5])%10000;
exit
}
--
Alexandre Oliva, freedom fighter http://FSFLA.org/~lxoliva/
You must be the change you wish to see in the world. -- Gandhi
Be Free! -- http://FSFLA.org/ FSF Latin America board member
Free Software Evangelist|Red Hat Brasil GNU Toolchain Engineer
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH] ld-version: fix it on Fedora "Michael S. Tsirkin" <mst@redhat.com> - 2016-01-07 19:00 +0100
Re: [PATCH] ld-version: fix it on Fedora Ralf Baechle <ralf@linux-mips.org> - 2016-01-07 19:20 +0100
Re: [PATCH] ld-version: fix it on Fedora Alexandre Oliva <oliva@gnu.org> - 2016-01-07 20:00 +0100
Re: [PATCH] ld-version: fix it on Fedora James Hogan <james.hogan@imgtec.com> - 2016-01-13 18:10 +0100
RE: [PATCH] ld-version: fix it on Fedora Daniel Sanders <Daniel.Sanders@imgtec.com> - 2016-01-13 18:40 +0100
csiph-web