mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
ccbef1674a
To check the linker version. Used by the LTO makefile. Signed-off-by: Andi Kleen <ak@linux.intel.com> Link: http://lkml.kernel.org/r/1391846481-31491-9-git-send-email-ak@linux.intel.com Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/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
|
|
}
|