Commit 656a3f797889dafcce2f5b8b222ad66e9974b6f7

Authored by Gabriel C
Committed by Sam Ravnborg
1 parent eb90d81d03

scripts/ver_linux use 'gcc -dumpversion'

These magic greps and hacks in ver_linux to get the gcc version always break after some gcc releases.

Since now gcc >4.3 allows compiling with '--with-pkgversion' ( which can be everything 'My Cool Gcc' or something )
ver_linux will report random junk for these.

Simply use 'gcc -dumpversion' to get the gcc version which should always work.

Signed-off-by: Gabriel C <nix.or.die@googlemail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>

Showing 1 changed file with 1 additions and 4 deletions Side-by-side Diff

... ... @@ -12,11 +12,8 @@
12 12 uname -a
13 13 echo ' '
14 14  
15   -gcc --version 2>&1| head -n 1 | grep -v gcc | awk \
  15 +gcc -dumpversion 2>&1| awk \
16 16 'NR==1{print "Gnu C ", $1}'
17   -
18   -gcc --version 2>&1| grep gcc | awk \
19   -'NR==1{print "Gnu C ", $3}'
20 17  
21 18 make --version 2>&1 | awk -F, '{print $1}' | awk \
22 19 '/GNU Make/{print "Gnu make ",$NF}'