Gitiles Standalone
repos
/
linux-4.4
/
ca4f2ac22cb12f410d3f889926dd84c2f742138e
/
.
/
scripts
/
ld-version.sh
blob: 1659b409ef1071a7bc6e8c7a558a87a3dc772f96 [
file
] [
log
] [
blame
]
#!/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
}