]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame_incremental - scripts/ld-version.sh
exec: avoid RLIMIT_STACK races with prlimit()
[mirror_ubuntu-bionic-kernel.git] / scripts / ld-version.sh
... / ...
CommitLineData
1#!/usr/bin/awk -f
2# SPDX-License-Identifier: GPL-2.0
3# extract linker version number from stdin and turn into single number
4 {
5 gsub(".*\\)", "");
6 gsub(".*version ", "");
7 gsub("-.*", "");
8 split($1,a, ".");
9 print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
10 exit
11 }