Skip to content

Commit

Permalink
Remove AVR GCC version warning (#24206)
Browse files Browse the repository at this point in the history
  • Loading branch information
daskygit authored Jul 28, 2024
1 parent cf84ea7 commit d538451
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lib/python/qmk/cli/doctor/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit d538451

Please sign in to comment.