Skip to content

Commit

Permalink
Try to fix Syno218 build (revert Boost and Poco version)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgallou committed Aug 28, 2024
1 parent 388adae commit 3a2b4b8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build-synology_218p/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ RUN cd $YADOMS_DEPS_PATH \
# Check GCC version
RUN x86_64-pc-linux-gnu-gcc --version

# Boost
# Boost (1.83.0 is the last version compatible with current toolchain)
ARG boost_version_major=1
ARG boost_version_minor=86
ARG boost_version_minor=83
ARG boost_version_patch=0
ARG boost_underscore=_
ARG boost_version=$boost_version_major$boost_underscore$boost_version_minor$boost_underscore$boost_version_patch
Expand Down Expand Up @@ -89,7 +89,8 @@ RUN cd $YADOMS_DEPS_PATH \


# Poco
ARG poco_version=1.13.3
# Poco (1.11.8p2 is the last version compatible with current toolchain)
ARG poco_version=1.11.8p2
RUN cd $YADOMS_DEPS_PATH \
&& wget --no-check-certificate --no-verbose http://pocoproject.org/releases/poco-$poco_version/poco-$poco_version-all.tar.gz > /dev/null\
&& tar xzf poco-$poco_version-all.tar.gz && cd poco-$poco_version-all > /dev/null\
Expand Down

0 comments on commit 3a2b4b8

Please sign in to comment.