Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
android_kernel_shift_sdm845
/
213b46958c65c7adaaf3201102da16ce0264e9cf
/
.
/
scripts
/
ld-version.sh
blob: 7bfe9fa1c8dc6db8d6c4415fbf0d26e66477e42e [
file
] [
log
] [
blame
]
#!/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
}