Skip to content
Snippets Groups Projects
Commit 185158f4 authored by Seva's avatar Seva Committed by Adrien Béraud
Browse files

docker: build shared for libfmt

parent baa9fcf8
Branches
Tags
No related merge requests found
...@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \ ...@@ -9,7 +9,7 @@ RUN apt-get update && apt-get install -y \
RUN echo "*** Installing libfmt ***" \ RUN echo "*** Installing libfmt ***" \
&& wget https://github.com/fmtlib/fmt/archive/5.3.0.tar.gz \ && wget https://github.com/fmtlib/fmt/archive/5.3.0.tar.gz \
&& tar -xzf 5.3.0.tar.gz && cd fmt-5.3.0/ \ && tar -xzf 5.3.0.tar.gz && cd fmt-5.3.0/ \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr . \ && cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=On . \
&& make -j8 && make install \ && make -j8 && make install \
&& cd ../ && rm -rf fmt* && cd ../ && rm -rf fmt*
......
...@@ -13,7 +13,7 @@ ENV CXX c++ ...@@ -13,7 +13,7 @@ ENV CXX c++
RUN echo "*** Installing libfmt ***" \ RUN echo "*** Installing libfmt ***" \
&& wget https://github.com/fmtlib/fmt/archive/5.3.0.tar.gz \ && wget https://github.com/fmtlib/fmt/archive/5.3.0.tar.gz \
&& tar -xzf 5.3.0.tar.gz && cd fmt-5.3.0/ \ && tar -xzf 5.3.0.tar.gz && cd fmt-5.3.0/ \
&& cmake -DCMAKE_INSTALL_PREFIX=/usr . \ && cmake -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=On . \
&& make -j8 && make install \ && make -j8 && make install \
&& cd ../ && rm -rf fmt* && cd ../ && rm -rf fmt*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment