Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
f55a7ceaf4851573d2cb494e1c701136748334d2
/
.
/
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
}