Skip to content

Commit

Permalink
build: Remove -Werror
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Dec 7, 2023
1 parent ab5aa51 commit 8a18389
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,9 @@ endif
# version must be tagged in the git repo
VERSION_STRING?=$(shell git describe --tags --always --abbrev=8 2> /dev/null || echo "UNKNOWN")

CXXWARNINGS=-Werror -Wno-unused-variable -Wno-free-nonheap-object -Wno-parentheses
CWARNINGS?=-Werror -Wno-unused-variable -Wno-unused-function -Wno-format-truncation -Wno-unknown-warning-option -Wno-unused-but-set-variable
# HACK Removes -Werror that causes a failure with include/boost/iostreams/filter/gzip.hpp
CXXWARNINGS=-Wno-unused-variable -Wno-free-nonheap-object -Wno-parentheses
CWARNINGS?=-Wno-unused-variable -Wno-unused-function -Wno-format-truncation -Wno-unknown-warning-option -Wno-unused-but-set-variable
CXXSTD?=-std=c++17


Expand Down

0 comments on commit 8a18389

Please sign in to comment.