Sign in
android-kvm
/
linux
/
3f8476fe892c58c0583f98f17e98fd67c3fec466
/
.
/
scripts
/
ld-version.sh
blob: 198580d245e033b8b674fdad3d1aa1cb21f0fd2e [
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
}