cccl: Ignore -fno-strict-aliasing.
authorAlin Serdean <aserdean@cloudbasesolutions.com>
Thu, 9 Oct 2014 03:35:10 +0000 (03:35 +0000)
committerBen Pfaff <blp@nicira.com>
Thu, 9 Oct 2014 05:16:38 +0000 (22:16 -0700)
Add a case for the gcc flag fno-strict-aliasing into cccl
Under MSVC  Strict aliasing is off by default.

Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
build-aux/cccl

index 1a06e38..b182805 100644 (file)
@@ -148,6 +148,10 @@ EOF
         #ignore warnings
         ;;
 
+    -fno-strict-aliasing*)
+        #ignore aliasing
+        ;;
+
     -isystem)
         shift
         clopt="$clopt -I$1"