ccbef1674a15
b24413180f56
4b7b1ef2c2f8
8083013fc320
0d61ed17dd30
1
2
3 4
5
6 7
8
9
10 11
#!/usr/bin/awk -f # SPDX-License-Identifier: GPL-2.0 # extract linker version number from stdin and turn into single number { gsub(".*\\)", ""); gsub(".*version ", ""); gsub("-.*", ""); split($1,a, "."); print a[1]*100000000 + a[2]*1000000 + a[3]*10000; exit }