Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.18-rc5 14 lines 338 B view raw
1#!/bin/sh 2# 3# gcc-version gcc-command 4# 5# Prints the gcc version of `gcc-command' in a canonical 4-digit form 6# such as `0295' for gcc-2.95, `0303' for gcc-3.3, etc. 7# 8 9compiler="$*" 10 11MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1) 12MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1) 13printf "%02d%02d\\n" $MAJOR $MINOR 14