swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: bfe01a5ba2490f299e1d2d5508cbbbadd897bbe9 authored by Linus Torvalds on 05 October 2014, 19:23:04 UTC
Linux 3.17
Tip revision: bfe01a5
ld-version.sh
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
	{
	gsub(".*)", "");
	split($1,a, ".");
	print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
	exit
	}
back to top