From: ojab Date: Sun, 13 May 2012 10:56:00 +0000 (+0400) Subject: Filter out -Wcovered-switch-default from LLVM_CFLAGS X-Git-Tag: 062012170305~202 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d2bf91cc15885d93412a075ab575b607da55814;p=profile%2Fivi%2Fmesa.git Filter out -Wcovered-switch-default from LLVM_CFLAGS Signed-off-by: José Fonseca --- diff --git a/configure.ac b/configure.ac index 844990a..3bb51a2 100644 --- a/configure.ac +++ b/configure.ac @@ -1830,7 +1830,7 @@ if test "x$enable_gallium_llvm" = xyes; then if test "x$LLVM_CONFIG" != xno; then LLVM_VERSION=`$LLVM_CONFIG --version | sed 's/svn.*//g'` - LLVM_CFLAGS=`$LLVM_CONFIG --cppflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g'` + LLVM_CFLAGS=`$LLVM_CONFIG --cppflags|sed -e 's/-DNDEBUG\>//g' -e 's/-pedantic//g' -e 's/-Wcovered-switch-default//g'` if test "x$with_llvm_shared_libs" = xyes; then dnl We can't use $LLVM_VERSION because it has 'svn' stripped out, LLVM_LIBS="-lLLVM-`$LLVM_CONFIG --version`"