Skip to content

Commit 4cc3489

Browse files
committed
Update azure pipelines to gcc-12/g++-12
The new `ubuntu-latest` image based on Ubuntu 24.04 has gcc-12 and does not have gcc-9. This updates to a more recent gcc. Note: while the Azure images have gcc-14 as well, I've chosen gcc-12 because it is the latest version of gcc available in 24.04's apt repositories. To get newer versions you need to poke at external apt repositories.
1 parent 0beaa76 commit 4cc3489

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

azure-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,13 @@ stages:
7373
Linux_Gcc_Release:
7474
image: ${{ variables.linux }}
7575
configuration: Release
76-
CC: gcc-9
77-
CXX: g++-9
76+
CC: gcc-12
77+
CXX: g++-12
7878
Linux_Gcc_Debug:
7979
image: ${{ variables.linux }}
8080
configuration: Debug
81-
CC: gcc-9
82-
CXX: g++-9
81+
CC: gcc-12
82+
CXX: g++-12
8383
MacOS_Clang_Release:
8484
image: ${{ variables.macOS }}
8585
configuration: Release

0 commit comments

Comments
 (0)