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:06:47 +02:00
parent ef4c252c2e
commit 51e2f584df

View file

@ -83,7 +83,7 @@ ENV CMAKE_OPTS="-DCMAKE_TOOLCHAIN_FILE=/debian-${ARCH}.cmake \
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/*