Skip to content

Commit

Permalink
Don't default to treating compiler warnings as errors.
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
fionatrahe committed Oct 7, 2024
1 parent 36fb090 commit e24d5f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

AC_PREREQ([2.69])
AC_INIT([qatlib], [24.09.0], [[email protected]])
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
Expand Down

0 comments on commit e24d5f0

Please sign in to comment.