Tools/GCCProxy - Hacks for '--print-prog-name=ld'
[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         -v|--version|-V)
59                 _verarg=$_verarg" $1"
60                 ;;
61         --inv=ld)
62                 _actas=ld
63                 ;;
64         -print-prog-name=ld)
65                 echo $0 --inv=ld
66                 exit 0
67                 ;;
68         *)
69                 _miscargs=$_miscargs" $1"
70                 ;;
71         esac
72         shift
73 done
74
75 run() {
76         #echo --- $*
77         $*
78         return $?
79 }
80
81 cfgfile=`mktemp`
82 make --no-print-directory -f $BASEDIR/getconfig.mk ARCH=x86 TYPE=$_linktype > $cfgfile
83 . $cfgfile
84 rm $cfgfile
85
86 #echo "_compile = $_compile, _preproc = $_preproc"
87
88 if [[ "x$_actas" == "xld" ]]; then
89         run $_LD $LDFLAGS $_ldflags $_outfile $_miscargs $LIBGCC_PATH $_libs
90         exit $?
91 fi
92
93 if [[ $_preproc -eq 1 ]]; then
94         run $_CC -E $CFLAGS $_cflags $_miscargs $_outfile
95 elif [[ $_makedep -eq 1 ]]; then
96         run $_CC -M $CFLAGS $_cflags $_miscargs $_outfile
97 elif [[ $_compile -eq 1 ]]; then
98         run $_CC $CFLAGS $_cflags $_miscargs -c $_outfile
99 elif echo " $_miscargs" | grep '\.c' >/dev/null; then
100         tmpout=`mktemp acess_gccproxy.XXXXXXXXXX.o --tmpdir`
101         run $_CC $CFLAGS $_cflags $_miscargs -c -o $tmpout
102         run $_LD $LDFLAGS $_ldflags $_libs $tmpout $_outfile $LIBGCC_PATH $_libs
103         _rv=$?
104         rm $tmpout
105         exit $_rv
106 else
107         run $_LD$_ldflags $_miscargs $_outfile $LDFLAGS  $_libs
108 fi
109

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