Skip to content

Commit

Permalink
kbuild: improve scripts/gcc-version.sh output a bit when called witho…
Browse files Browse the repository at this point in the history
…ut args

Currently, if you call scripts/gcc-version.sh without arguments it will
generate this output :

$ sh scripts/gcc-version.sh
scripts/gcc-version.sh: line 12: [: =: unary operator expected
scripts/gcc-version.sh: line 16: -E: command not found
scripts/gcc-version.sh: line 17: -E: command not found
0000

Not too pretty. I believe this is an improvement :

$ sh scripts/gcc-version.sh
Error: No compiler specified.
Usage:
        scripts/gcc-version.sh <gcc-command>

Signed-off-by: Jesper Juhl <[email protected]>
Signed-off-by: Sam Ravnborg <[email protected]>
  • Loading branch information
Jesper Juhl authored and Sam Ravnborg committed Oct 12, 2007
1 parent c34114f commit de47062
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/gcc-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@
# gcc-2.95.3, `030301' for gcc-3.3.1, etc.
#

if [ $1 = "-p" ] ; then with_patchlevel=1; shift; fi
if [[ $1 = "-p" ]] ; then with_patchlevel=1; shift; fi

compiler="$*"

if [ ${#compiler} -eq 0 ]; then
echo "Error: No compiler specified."
echo -e "Usage:\n\t$0 <gcc-command>"
exit 1
fi

MAJOR=$(echo __GNUC__ | $compiler -E -xc - | tail -n 1)
MINOR=$(echo __GNUC_MINOR__ | $compiler -E -xc - | tail -n 1)
if [ "x$with_patchlevel" != "x" ] ; then
Expand Down

0 comments on commit de47062

Please sign in to comment.