summaryrefslogtreecommitdiffstats
path: root/scripts/ld-version.sh
blob: d135882e2c40936753c0dc7ffb0362d95532d2c3 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/awk -f
# 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
	}
OpenPOWER on IntegriCloud