Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ld-version.sh « scripts - github.com/torvalds/linux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d154f0877fd806a93d234e6d4288da27d6c5d09f (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 + a[4]*100 + a[5];
	exit
	}