We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d4bd1 commit c839d6eCopy full SHA for c839d6e
scripts/ld-version.sh
@@ -1,7 +1,7 @@
1
#!/usr/bin/awk -f
2
# extract linker version number from stdin and turn into single number
3
{
4
- gsub(".*)", "");
+ gsub(".*\\)", "");
5
split($1,a, ".");
6
print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
7
exit
0 commit comments