From e24d5f064cb87b02578e0286a54d8c9d4e0bb451 Mon Sep 17 00:00:00 2001 From: Fiona Trahe Date: Tue, 17 Sep 2024 22:33:23 +0530 Subject: [PATCH] Don't default to treating compiler warnings as errors. Compilers evolve and future versions may throw warnings that don't show up today. Treating all warnings as errors is helpful at development stage, but best removed in released code to avoid the potential of such future warnings breaking the build. So remove the -Werror flag. Signed-off-by: Fiona Trahe --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c9fb39cd..14a05e1c 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) AC_INIT([qatlib], [24.09.0], [qat-linux@intel.com]) -AM_INIT_AUTOMAKE([-Wall -Werror -Wno-portability foreign subdir-objects tar-pax]) +AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects tar-pax]) AM_SILENT_RULES([yes]) AC_USE_SYSTEM_EXTENSIONS