repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
net: sock: allow eBPF programs to be attached to sockets
[linux/fpc-iii.git]
/
scripts
/
ld-version.sh
blob
198580d245e033b8b674fdad3d1aa1cb21f0fd2e
1
#!/usr/bin/awk -f
2
# extract linker version number from stdin and turn into single number
3
{
4
gsub
(
".*)"
,
""
);
5
split
(
$
1
,
a
,
"."
);
6
print
a
[
1
]*
10000000
+
a
[
2
]*
100000
+
a
[
3
]*
10000
+
a
[
4
]*
100
+
a
[
5
];
7
exit
8
}