From 11feb9c7c95a4a8889f549c8a62ba426f4c536f7 Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Mon, 12 Aug 2024 21:22:35 -0400 Subject: [PATCH] wip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f8a7e8..5309510 100644 --- a/Dockerfile +++ b/Dockerfile @@ -152,7 +152,7 @@ ENV LD_LIBRARY_PATH=/usr/local/lib:${LD_LIBRARY_PATH} RUN git clone --depth 1 https://github.com/awslabs/aws-c-common.git \ && cd aws-c-common \ && mkdir -p build && cd build \ - && cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=ON -DCMAKE_CXX_FLAGS="-Wno-unused-parameter" \ + && cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=ON -DCMAKE_CXX_FLAGS="-Wno-unused-parameter -Wno-error=maybe-uninitialized" \ && make -j ${BUILD_CPUS} && make install \ && cd /usr/local/src \ && git clone --recursive --depth 1 https://github.com/awslabs/aws-crt-cpp.git \