From bee36494a95f649911edf5942328378ea5804948 Mon Sep 17 00:00:00 2001 From: Cory Petkovsek <632766+tinmanjuggernaut@users.noreply.github.com> Date: Wed, 25 Mar 2020 16:52:00 +0800 Subject: [PATCH] Move Ubuntu to gcc 9.2.1 --- Dockerfile.ubuntu-32 | 10 +++++----- Dockerfile.ubuntu-64 | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Dockerfile.ubuntu-32 b/Dockerfile.ubuntu-32 index bf6b120..0e51650 100644 --- a/Dockerfile.ubuntu-32 +++ b/Dockerfile.ubuntu-32 @@ -14,12 +14,12 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand apt-get -y update && \ apt-get -y install --no-install-recommends \ autoconf automake bzip2 cmake curl gettext git libtool make perl scons xz-utils \ - gcc-8 g++-8 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \ + gcc-9 g++-9 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \ libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxinerama-dev yasm && \ - ln -sf /usr/bin/gcc-ranlib-8 /usr/bin/gcc-ranlib && \ - ln -sf /usr/bin/gcc-ar-8 /usr/bin/gcc-ar && \ - ln -sf /usr/bin/gcc-8 /usr/bin/gcc && \ - ln -sf /usr/bin/g++-8 /usr/bin/g++ + ln -sf /usr/bin/gcc-ranlib-9 /usr/bin/gcc-ranlib && \ + ln -sf /usr/bin/gcc-ar-9 /usr/bin/gcc-ar && \ + ln -sf /usr/bin/gcc-9 /usr/bin/gcc && \ + ln -sf /usr/bin/g++-9 /usr/bin/g++ RUN cd /root && \ git clone https://github.com/mono/mono --branch ${mono_version} --single-branch && \ diff --git a/Dockerfile.ubuntu-64 b/Dockerfile.ubuntu-64 index 73f1638..eb73015 100644 --- a/Dockerfile.ubuntu-64 +++ b/Dockerfile.ubuntu-64 @@ -14,12 +14,12 @@ RUN if [ -z "${mono_version}" ]; then echo -e "\n\nargument mono-version is mand apt-get -y update && \ apt-get -y install --no-install-recommends \ autoconf automake bzip2 cmake curl gettext git libtool make perl scons xz-utils \ - gcc-8 g++-8 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \ + gcc-9 g++-9 libudev-dev libx11-dev libxcursor-dev libxrandr-dev libasound2-dev libpulse-dev \ libgl1-mesa-dev libglu1-mesa-dev libxi-dev libxinerama-dev yasm && \ - ln -sf /usr/bin/gcc-ranlib-8 /usr/bin/gcc-ranlib && \ - ln -sf /usr/bin/gcc-ar-8 /usr/bin/gcc-ar && \ - ln -sf /usr/bin/gcc-8 /usr/bin/gcc && \ - ln -sf /usr/bin/g++-8 /usr/bin/g++ + ln -sf /usr/bin/gcc-ranlib-9 /usr/bin/gcc-ranlib && \ + ln -sf /usr/bin/gcc-ar-9 /usr/bin/gcc-ar && \ + ln -sf /usr/bin/gcc-9 /usr/bin/gcc && \ + ln -sf /usr/bin/g++-9 /usr/bin/g++ RUN cd /root && \ git clone https://github.com/mono/mono --branch ${mono_version} --single-branch && \