1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

reduce version of FMT lib to 5.2.0 instead of 6.0.0 for compatibility with spdlog library

This commit is contained in:
Sonja Happ 2019-09-16 16:08:01 +02:00
parent 51e2f584df
commit 3cfc2736aa

View file

@ -84,7 +84,7 @@ RUN apt-get update && apt-get install -y \
RUN cd /tmp && \
git clone --recursive https://github.com/fmtlib/fmt.git && \
mkdir -p fmt/build && cd fmt/build && \
git checkout 6.0.0 && \
git checkout 5.2.0 && \
cmake -DBUILD_SHARED_LIBS=1 .. && make -j$(nproc) install && \
rm -rf /tmp/*