Makefile.am: Clean flake8-check too.
[cascardo/ovs.git] / build-aux / cccl
index 1a06e38..afa0a6b 100644 (file)
@@ -90,7 +90,7 @@ EOF
         ;;
 
     -O0)
-        clopt="$clopt ${slash}Ot"
+        clopt="$clopt ${slash}Od ${slash}D_DEBUG"
         ;;
 
     -O2)
@@ -148,6 +148,14 @@ EOF
         #ignore warnings
         ;;
 
+    -Q*)
+        #ignore link warnings
+        ;;
+
+    -fno-strict-aliasing*)
+        #ignore aliasing
+        ;;
+
     -isystem)
         shift
         clopt="$clopt -I$1"
@@ -198,6 +206,8 @@ else
     opts=$linkopt
 fi
 
-echo "$prog $opts"
+if test x$V = x1 ; then
+    echo "$prog $opts"
+fi
 exec $prog $opts
 exit 0