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: f2be0ff9a738aca75c014c80b7535833d1eeb1a1 (plain)
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
	}