Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
ak
/
linux-misc
/
23d11a58a9a60dcb52c8fc6494efce908b24c295
/
.
/
scripts
/
ld-version.sh
blob: d154f0877fd806a93d234e6d4288da27d6c5d09f [
file
]
#!/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
}