gnu: qmk: Use GCC 8 for the AVR toolchain.

* gnu/packages/firmware.scm (qmk) [inputs]: Specify 'gcc-8' as the #:xgcc
argument to the 'make-avr-toolchain' procedure.
This commit is contained in:
Maxim Cournoyer 2023-09-13 16:14:40 -04:00
parent 431d64bae2
commit 261a1f902a
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -1257,7 +1257,9 @@ (define-public qmk
;; The inputs are not propagated since qmk is to be used strictly as a
;; command.
(inputs
(list (make-avr-toolchain)
;; The 'qmk setup' command advises to use GCC at version 8, and there are
;; compilation errors in some firmware otherwise.
(list (make-avr-toolchain #:xgcc gcc-8)
avrdude
dfu-programmer
git-minimal ;for the clone action