Skip to content

Commit

Permalink
Use gcc-12 instead of gcc-9 on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-johnson committed Oct 2, 2024
1 parent ea9436e commit e35db09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -949,8 +949,8 @@ def add_env_setup_step(factory, builder_type, enable_ccache=False):
ld = 'ld'

if builder_type.os == 'linux':
cc = 'gcc-9'
cxx = 'g++-9'
cc = 'gcc-12'
cxx = 'g++-12'
ld = 'ld'
if builder_type.arch == 'x86' and builder_type.bits == 32:
cxx += ' -m32'
Expand Down

0 comments on commit e35db09

Please sign in to comment.