Skip to content

Commit 9f4ad40

Browse files
authored
Merge pull request #42 from tinmanjuggernaut/fix_ubuntu
Move Ubuntu to gcc 9.2.1
2 parents 6a799cb + bee3649 commit 9f4ad40

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Dockerfile.ubuntu-32

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand
1313
apt-get -y update && \
1414
apt-get -y install --no-install-recommends \
1515
autoconf automake bzip2 cmake curl gettext git libtool make perl scons xz-utils \
16-
gcc-8 g++-8 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \
16+
gcc-9 g++-9 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \
1717
libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxinerama-dev yasm && \
18-
ln -sf /usr/bin/gcc-ranlib-8 /usr/bin/gcc-ranlib && \
19-
ln -sf /usr/bin/gcc-ar-8 /usr/bin/gcc-ar && \
20-
ln -sf /usr/bin/gcc-8 /usr/bin/gcc && \
21-
ln -sf /usr/bin/g++-8 /usr/bin/g++
18+
ln -sf /usr/bin/gcc-ranlib-9 /usr/bin/gcc-ranlib && \
19+
ln -sf /usr/bin/gcc-ar-9 /usr/bin/gcc-ar && \
20+
ln -sf /usr/bin/gcc-9 /usr/bin/gcc && \
21+
ln -sf /usr/bin/g++-9 /usr/bin/g++
2222

2323
RUN cp -a /root/files/${mono_version} /root && \
2424
cd /root/${mono_version} && \

Dockerfile.ubuntu-64

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand
1313
apt-get -y update && \
1414
apt-get -y install --no-install-recommends \
1515
autoconf automake bzip2 cmake curl gettext git libtool make perl scons xz-utils \
16-
gcc-8 g++-8 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \
16+
gcc-9 g++-9 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \
1717
libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxinerama-dev yasm && \
18-
ln -sf /usr/bin/gcc-ranlib-8 /usr/bin/gcc-ranlib && \
19-
ln -sf /usr/bin/gcc-ar-8 /usr/bin/gcc-ar && \
20-
ln -sf /usr/bin/gcc-8 /usr/bin/gcc && \
21-
ln -sf /usr/bin/g++-8 /usr/bin/g++
18+
ln -sf /usr/bin/gcc-ranlib-9 /usr/bin/gcc-ranlib && \
19+
ln -sf /usr/bin/gcc-ar-9 /usr/bin/gcc-ar && \
20+
ln -sf /usr/bin/gcc-9 /usr/bin/gcc && \
21+
ln -sf /usr/bin/g++-9 /usr/bin/g++
2222

2323
RUN cp -a /root/files/${mono_version} /root && \
2424
cd /root/${mono_version} && \

0 commit comments

Comments
 (0)