util-docker: Fix clang-version-8 docker container

clang v8, when installed in this manner via Docker, did not install the
libstdc++. This caused compilation errors. This patch adds the
libstdc++-10-dev package to this Dockerfile.

Change-Id: Ia0f41e82b3df2d4bf32b418b0cb78111a35e0b9f
This commit is contained in:
Bobby R. Bruce
2023-08-14 17:52:40 -07:00
parent 41dcd3c5d5
commit 74f6fa34af

View File

@@ -40,7 +40,10 @@ RUN apt -y update && apt -y upgrade && \
apt -y install git m4 scons zlib1g zlib1g-dev libprotobuf-dev \
protobuf-compiler libprotoc-dev libgoogle-perftools-dev python3-dev \
python-is-python3 doxygen libboost-all-dev libhdf5-serial-dev \
python3-pydot libpng-dev clang-${version} make
python3-pydot libpng-dev clang-${version} make \
# This is needed as clang-8 does not have the libstdc++-10-dev package.
# It is necessary for compilation.
libstdc++-10-dev
RUN apt-get --purge -y remove gcc