diff options
author | 2021-11-22 23:38:36 +0100 | |
---|---|---|
committer | 2021-12-08 11:42:54 +0000 | |
commit | 563487f9535e6f52a42278b9e1c2ec8f56b91449 (patch) | |
tree | 9b8bf77ed7e6422428381a6b352eae9c8fb57d1c | |
parent | a68911f36b67c7dd8eb319c8cfb32d1c0cbcbf69 (diff) | |
download | paludis-563487f9535e6f52a42278b9e1c2ec8f56b91449.tar.gz paludis-563487f9535e6f52a42278b9e1c2ec8f56b91449.tar.xz |
ci: Enable -Werror
-rwxr-xr-x | ci/configure-paludis.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/configure-paludis.sh b/ci/configure-paludis.sh index 8772b1c6f..6c072f0a6 100755 --- a/ci/configure-paludis.sh +++ b/ci/configure-paludis.sh @@ -39,6 +39,8 @@ else exit 1 fi +CXXFLAGS="${CXXFLAGS} -Werror" + if [[ ${BUILD_TYPE} == "release" ]]; then CMAKE_BUILD_TYPE="Release" CXXFLAGS="${CXXFLAGS} -pipe -O2" |