diff options
author | Linus Groh <mail@linusgroh.de> | 2022-10-25 20:28:09 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-10-25 23:15:51 +0100 |
commit | bc2ebcadc0eb695605051c9d362c3f5dc184c63c (patch) | |
tree | d3579761351733ffb77a011687e262d245683ab1 /Meta/Azure/Serenity.yml | |
parent | 28bc3a76d916383c980b534c58b148c542ee4189 (diff) | |
download | serenity-bc2ebcadc0eb695605051c9d362c3f5dc184c63c.zip |
Everywhere: Require version >= 12 for GCC host compiler
So far we've gotten away with using GCC 11 for Lagom and to compile the
toolchain, but via #15795 we discovered a compiler bug that has been
fixed in the latest version but would error the build with CI's GCC 11.
Time for an upgrade :^)
We already use ubuntu-22.04 images in most places, so this is pretty
straightforward. The only exception is Idan's self-hosted runner, which
uses Ubuntu Focal. LibJS should build fine with GCC 11, still.
Diffstat (limited to 'Meta/Azure/Serenity.yml')
-rw-r--r-- | Meta/Azure/Serenity.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Meta/Azure/Serenity.yml b/Meta/Azure/Serenity.yml index 65aa7d927b..0d75f001f0 100644 --- a/Meta/Azure/Serenity.yml +++ b/Meta/Azure/Serenity.yml @@ -50,8 +50,8 @@ jobs: -DDUMP_REGIONS_ON_CRASH=ON \ -DENABLE_PCI_IDS_DOWNLOAD=OFF \ -DENABLE_USB_IDS_DOWNLOAD=OFF \ - -DCMAKE_C_COMPILER=gcc-11 \ - -DCMAKE_CXX_COMPILER=g++-11 + -DCMAKE_C_COMPILER=gcc-12 \ + -DCMAKE_CXX_COMPILER=g++-12 displayName: 'Create Build Environment' workingDirectory: $(Build.SourcesDirectory) env: |