1
0
Fork 0
alistair23-linux/scripts/ld-version.sh

9 lines
207 B
Bash
Raw Normal View History

#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
{
gsub(".*)", "");
split($1,a, ".");
print a[1]*100000000 + a[2]*1000000 + a[3]*10000 + a[4]*100 + a[5];
exit
}