From: Alin Serdean Date: Thu, 23 Apr 2015 18:46:39 +0000 (+0000) Subject: Remove compiler warning X-Git-Tag: v2.4.0~274 X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=dd92c6165ddb53922562c43fdcc8845dc4bb435a Remove compiler warning When linking executables on windows the following argument is passed to the linker -Qunused-arguments. This results in the following warning: Command line warning D9002 : ignoring unknown option '-Qunused-arguments' This patch removes that warning. Signed-off-by: Alin Gabriel Serdean Signed-off-by: Gurucharan Shetty --- diff --git a/build-aux/cccl b/build-aux/cccl index 456292e5f..afa0a6b8b 100644 --- a/build-aux/cccl +++ b/build-aux/cccl @@ -148,6 +148,10 @@ EOF #ignore warnings ;; + -Q*) + #ignore link warnings + ;; + -fno-strict-aliasing*) #ignore aliasing ;;