Projet

Général

Profil

0002-Remove-Werror-from-enable-debugging-fixes-24771.patch

Benjamin Dauvergne, 24 juillet 2018 16:31

Télécharger (900 octets)

Voir les différences:

Subject: [PATCH 2/2] Remove -Werror from --enable-debugging (fixes #24771)

GCC 8 has better warnings and it breaks the build on platform already
using it and wanting debugging symbols.
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
configure.ac
700 700
if test "z$enable_debugging" = "zyes" ; then
701 701
    enable_debugging=yes
702 702
    LASSO_DEFINES="$LASSO_DEFINES -DLASSO_DEBUG"
703
    CFLAGS="$CFLAGS -O0 -g -Wall -Wextra -Werror"
703
    CFLAGS="$CFLAGS -O0 -g -Wall -Wextra"
704 704
else
705 705
    enable_debugging=no
706 706
fi    
707
-