File: ccver.sh

package info (click to toggle)
openser 1.1.0-9etch1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 9,828 kB
  • ctags: 11,809
  • sloc: ansic: 120,528; sh: 5,249; yacc: 1,716; makefile: 1,261; php: 656; perl: 205; sql: 190
file content (83 lines) | stat: -rw-r--r-- 1,457 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/sh

#$Id: ccver.sh,v 1.1.1.1 2005/06/13 16:47:26 bogdan_iancu Exp $
#
# finds CC version and prints it in the following format:
# compiler_name version major_version
#



if [ $# -lt 1 ]
then 
	echo "Error: you must specify the compiler name" 1>&2
	exit 1
fi

if [ "$1" = "-h" ]
then
	echo "Usage: "
	echo "      $0 compiler_name"
	exit 1
fi


CC=$1

if  which $CC >/dev/null
then
	(test ! -x `which $CC`) && echo "Error: $CC not executable" 1>&2 && exit 1
else
	echo "Error: $CC not found or not executable" 1>&2
	exit 1 
fi


if $CC -v 2>/dev/null 1>/dev/null
then
	FULLVER=`$CC -v 2>&1` 
else
	FULLVER=`$CC -V 2>&1`
fi



if [ -n "$FULLVER" ]
then
	# check if gcc
	if echo "$FULLVER"|grep gcc >/dev/null
	then
		NAME=gcc
		VER=`$CC --version|head -n 1| \
				sed -e 's/^[^0-9]*\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*/\1/'\
				    -e 's/^[^.0-9]*\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/'`
	elif echo "$FULLVER"|grep Sun >/dev/null
	then
		NAME=suncc
		VER=`echo "$FULLVER"|head -n 1| \
				sed -e 's/.*\([0-9][0-9]*\.[0-9][0-9]*\).*/\1/'`
	elif echo "$FULLVER"|grep "Intel(R) C++ Compiler" >/dev/null
	then
		NAME=icc
		VER=`echo "$FULLVER"|head -n 1| \
				sed -e 's/.*Version \([0-9]\.[0-9]\.[0-9]*\).*/\1/' ` 
	fi
	
	# find major ver
	if [  -n "$VER"  -a -z "$MAJOR_VER" ]
	then
		MAJOR_VER=`echo "$VER" |cut -d. -f1`
	fi
fi	


#unknown
if [ -z "$NAME" ]
then
	NAME="unknown"
	VER="unknown"
	MAJOR_VER="unknown"
fi


echo "$NAME $VER $MAJOR_VER"