gcc5 support to Dockerfile
gcc5 support to Dockerfile
This commit is contained in:
parent
c25f0b88f0
commit
3f34bc89b6
1 changed files with 3 additions and 0 deletions
|
|
@ -9,6 +9,8 @@ RUN \
|
||||||
apt-get update -y && \
|
apt-get update -y && \
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||||
autoconf \
|
autoconf \
|
||||||
|
gcc-5 \
|
||||||
|
g++-5 \
|
||||||
bash \
|
bash \
|
||||||
build-essential \
|
build-essential \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
|
@ -50,6 +52,7 @@ WORKDIR /peerplays-core
|
||||||
# Compile Peerplays
|
# Compile Peerplays
|
||||||
RUN \
|
RUN \
|
||||||
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
||||||
|
export CC=gcc-5 ; export CXX=g++-5\
|
||||||
git submodule update --init --recursive && \
|
git submodule update --init --recursive && \
|
||||||
mkdir build && \
|
mkdir build && \
|
||||||
mkdir build/release && \
|
mkdir build/release && \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue