Remove AVR GCC version warning (#24206)

This commit is contained in:
Dasky 2024-07-28 19:16:15 +01:00 committed by GitHub
parent cf84ea7662
commit d538451adb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -53,11 +53,6 @@ def _check_avr_gcc_version():
version_number = ESSENTIAL_BINARIES['avr-gcc']['output'].strip()
cli.log.info('Found avr-gcc version %s', version_number)
parsed_version = _parse_gcc_version(version_number)
if parsed_version['major'] > 8:
cli.log.warning('{fg_yellow}We do not recommend avr-gcc newer than 8. Downgrading to 8.x is recommended.')
return CheckStatus.WARNING
return CheckStatus.OK