Sign in
coral
/
linux-mtk
/
ec33d36e5ab5d52d59a8f696f7efb682bfc58494
/
.
/
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
}