X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Tools%2FGCCProxy%2Fgccproxy.sh;h=5a126a9235e48fef609673051d1543d8b17e3af8;hb=9edb6f7c288a93d9f9ce3f7233b577a601471071;hp=7448d38df46e46bfeb7ae1c864a13f24cb96c27b;hpb=41e7d6a1d996936670f164a26580f18b727c6450;p=tpg%2Facess2.git diff --git a/Tools/GCCProxy/gccproxy.sh b/Tools/GCCProxy/gccproxy.sh index 7448d38d..5a126a92 100755 --- a/Tools/GCCProxy/gccproxy.sh +++ b/Tools/GCCProxy/gccproxy.sh @@ -16,6 +16,8 @@ _miscargs="" _compile=0 _linktype=Applications +echo [GCCProxy] $* >&2 + while [[ $# -gt 0 ]]; do case "$1" in -E) @@ -65,6 +67,14 @@ while [[ $# -gt 0 ]]; do echo $0 --inv=ld exit 0 ;; + -dumpspecs) + _compile=1 + _miscargs=$_miscargs" $1" + ;; + -dumpversion) + _compile=1 + _miscargs=$_miscargs" $1" + ;; *) _miscargs=$_miscargs" $1" ;;