From bfd815810f2fe5d11ce55f42678275fd3122573e Mon Sep 17 00:00:00 2001 From: Willian Galvani Date: Wed, 8 Mar 2023 23:55:03 -0300 Subject: [PATCH] Tools: use gcc 10.2.1 for Sub too --- Tools/scripts/build_binaries.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Tools/scripts/build_binaries.py b/Tools/scripts/build_binaries.py index 5853a1d642..6167b09c68 100755 --- a/Tools/scripts/build_binaries.py +++ b/Tools/scripts/build_binaries.py @@ -56,9 +56,6 @@ def get_required_compiler(vehicle, tag, board): if not is_chibios_build(board): # only override compiler for ChibiOS builds return None - if vehicle == 'Sub' and tag in ['stable', 'beta']: - # sub stable and beta is on the old compiler - return "g++-6.3.1" # use 10.2.1 compiler for all other builds return "g++-10.2.1"