update NOTICE and LICENSE
[nit.git] / bin / gccx
index bdeb3bb..83f8c9f 100755 (executable)
--- a/bin/gccx
+++ b/bin/gccx
@@ -19,7 +19,7 @@
 
 OPTS="-g" # option for compiler call
 objs="" # List of .o files
-CC="gcc --ansi --pedantic -Wall -Wextra -Wformat-security -Wcast-align -Wno-uninitialized -Wno-unused-variable -Wno-unused-label -Wno-unused-parameter -Wno-missing-field-initializers" # Default compiler call
+CC="cc" # Default compiler call
 ext="_savo _sav" # Default flavor to reuse
 out="a.out"  # Default output binary filename
 dir="" # Default tmp dir
@@ -66,6 +66,11 @@ fi
 return $res
 }
 
+cache=true
+if ccache -V 2>/dev/null >/dev/null; then
+       cache=ccache
+fi
+
 stop=false
 verbose=false
 vverbose=false
@@ -91,6 +96,10 @@ if [ $nolibgc != true ] && test_libgc; then
        OPTS="$OPTS -DWITH_LIBGC -lgc"
 fi
 
+if [ $cache = "ccache" ]; then
+       CC="ccache $CC"
+fi
+
 for i in "$@"; do
        j=`basename "$i" .c`
        transformed=`echo "$i" | sed "
@@ -107,6 +116,13 @@ for i in "$@"; do
        "`
 
        found="false"
+       if [ $cache != true ]; then
+               o="$dir$j.o"
+               if [ $vverbose = true  ] ; then
+                       echo "* $CC $OPTS -c $i -o $o" >&2
+               fi
+               $CC $OPTS -c $i -o $o || exit 1
+       else
        # We remove starting # to be path independent (after preprocess, there are the only # remainings)
        cksum=`gcc -E $OPTS $i 2> /dev/null | grep -v "^#" | $CKSUM`
        for e in $ext; do
@@ -137,6 +153,7 @@ for i in "$@"; do
                        exit 1
                fi
        fi
+fi
        objs="$objs $o"
 done