Merge branch 'master' of git://git.ucc.asn.au/tpg/acess2
[tpg/acess2.git] / Tools / GCCProxy / gccproxy.sh
1 #!/bin/bash
2
3 # Get invocation path (which could be a symlink in $PATH)
4 fullpath=`which "$0"`
5 if [[ !$? ]]; then
6         fullpath="$0"
7 fi
8
9 # Resolve symlink
10 fullpath=`readlink -f "$fullpath"`
11
12 # Get base directory
13 BASEDIR=`dirname "$fullpath"`
14
15 _miscargs=""
16 _compile=0
17 _linktype=Applications
18
19 while [[ $# -gt 0 ]]; do
20         case "$1" in
21         -E)
22                 _preproc=1
23                 ;;
24         -M)
25                 _makedep=1
26                 ;;
27         -c)
28                 _compile=1
29                 ;;
30         -o)
31                 shift
32                 _outfile="-o $1"
33                 ;;
34         -shared)
35                 _ldflags=$_ldflags" -shared -lc -lgcc"
36                 _linktype=Libraries
37                 ;;
38         -I|-D|-O)
39                 _cflags=$_cflags" $1 $2"
40                 shift
41                 ;;
42         -I*|-D*|-O*)
43                 _cflags=$_cflags" $1"
44                 ;;
45         -Wl,*)
46                 arg=$1
47                 arg=${arg#-Wl}
48                 arg=${arg/,/ }
49                 _ldflags=$_ldflags" ${arg}"
50                 ;;
51         -l|-L)
52                 _libs=$_libs" $1$2"
53                 shift
54                 ;;
55         -l*|-L*)
56                 _libs=$_libs" $1"
57                 ;;
58         *)
59                 _miscargs=$_miscargs" $1"
60                 ;;
61         esac
62         shift
63 done
64
65 run() {
66 #       echo --- $*
67         $*
68         return $?
69 }
70
71 cfgfile=`mktemp`
72 make --no-print-directory -f $BASEDIR/getconfig.mk ARCH=x86 TYPE=$_linktype > $cfgfile
73 . $cfgfile
74 rm $cfgfile
75
76 #echo "_compile = $_compile, _preproc = $_preproc"
77
78 if [[ $_preproc -eq 1 ]]; then
79         run $_CC -E $CFLAGS $_cflags $_miscargs $_outfile
80 elif [[ $_makedep -eq 1 ]]; then
81         run $_CC -M $CFLAGS $_cflags $_miscargs $_outfile
82 elif [[ $_compile -eq 1 ]]; then
83         run $_CC $CFLAGS $_cflags $_miscargs -c $_outfile
84 elif echo " $_miscargs" | grep '\.c' >/dev/null; then
85         tmpout=`mktemp acess_gccproxy.XXXXXXXXXX.o --tmpdir`
86         run $_CC $CFLAGS $_cflags $_miscargs -c -o $tmpout
87         run $_LD $LDFLAGS $_ldflags $_libs $tmpout $_outfile -lgcc $_libs
88         rm $tmpout
89 else
90         run $_LD$_ldflags $_miscargs $_outfile $LDFLAGS  $_libs
91 fi
92

UCC git Repository :: git.ucc.asn.au