Sign in
android
/
kernel
/
common
/
e25572878a70d9cd84020f577b7c45583b9d42ae
/
.
/
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
}