From 369db1fc36b6bc710417916f25a797efbc8171ee Mon Sep 17 00:00:00 2001 From: Ramon Nou Date: Tue, 27 Sep 2022 09:32:01 +0000 Subject: [PATCH] Added maybe-uninitialized to rocksdb installation --- scripts/profiles/0.9.1/install/rocksdb.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/profiles/0.9.1/install/rocksdb.install b/scripts/profiles/0.9.1/install/rocksdb.install index 9350e9feb..6ece050bd 100644 --- a/scripts/profiles/0.9.1/install/rocksdb.install +++ b/scripts/profiles/0.9.1/install/rocksdb.install @@ -48,7 +48,7 @@ pkg_install() { # gcc 9 and clang 8 need -Wno-error=deprecated-copy -Wno-error=pessimizing-move if [[ ("${COMPILER_NAME}" == "g++" && "${COMPILER_MAJOR_VERSION}" -ge 9) || ("${COMPILER_NAME}" == "clang" && "${COMPILER_MAJOR_VERSION}" -ge 8) ]]; then - CXXFLAGS='-Wno-error=deprecated-copy -Wno-error=pessimizing-move' + CXXFLAGS='-Wno-error=deprecated-copy -Wno-error=pessimizing-move -Wno-error=maybe-uninitialized' fi # TODO use SSE? -- GitLab