Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
 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	}