Merge pull request #5 from pmret/compilerfix

CI now builds the compiler with GCC 6
This commit is contained in:
Ethan Roseman 2021-07-15 06:21:11 -04:00 committed by GitHub
commit b542c63fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,13 @@ jobs:
if: matrix.TARGET.OS == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y build-essential bison file gcc-multilib gperf
sudo apt-get install -y build-essential bison file gperf
echo "deb http://old-releases.ubuntu.com/ubuntu zesty main" | sudo tee /etc/apt/sources.list.d/zesty.list
sudo apt-add-repository -r universe
sudo apt update
sudo apt install -y gcc-6 gcc-6-multilib
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 1
- name: Configure
shell: bash