gnu: avr-gcc: Fix conflicting GCC headers.
Fixes <https://bugs.gnu.org/41209>. Reported by Ricardo Wurmus <rekado@elephly.net>. * gnu/packages/avr.scm (avr-gcc-4.9)[arguments]: Add phase to hide the default GCC from CPLUS_INCLUDE_PATH. [native-inputs]: Distinguish GCC-5.
This commit is contained in:
parent
8ba4d8a347
commit
fd96ae4a70
1 changed files with 17 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
;;; Copyright © 2016 David Thompson <davet@gnu.org>
|
||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -49,6 +50,21 @@
|
||||||
(substitute-keyword-arguments (package-arguments xgcc)
|
(substitute-keyword-arguments (package-arguments xgcc)
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
`(modify-phases ,phases
|
||||||
|
(add-after 'set-paths 'augment-CPLUS_INCLUDE_PATH
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(let ((gcc (assoc-ref inputs "gcc")))
|
||||||
|
;; Remove the default compiler from CPLUS_INCLUDE_PATH to
|
||||||
|
;; prevent header conflict with the GCC from native-inputs.
|
||||||
|
(setenv "CPLUS_INCLUDE_PATH"
|
||||||
|
(string-join
|
||||||
|
(delete (string-append gcc "/include/c++")
|
||||||
|
(string-split (getenv "CPLUS_INCLUDE_PATH")
|
||||||
|
#\:))
|
||||||
|
":"))
|
||||||
|
(format #t
|
||||||
|
"environment variable `CPLUS_INCLUDE_PATH' changed to ~a~%"
|
||||||
|
(getenv "CPLUS_INCLUDE_PATH"))
|
||||||
|
#t)))
|
||||||
;; Without a working multilib build, the resulting GCC lacks
|
;; Without a working multilib build, the resulting GCC lacks
|
||||||
;; support for nearly every AVR chip.
|
;; support for nearly every AVR chip.
|
||||||
(add-after 'unpack 'fix-genmultilib
|
(add-after 'unpack 'fix-genmultilib
|
||||||
|
@ -78,7 +94,7 @@
|
||||||
(variable "CROSS_LIBRARY_PATH")
|
(variable "CROSS_LIBRARY_PATH")
|
||||||
(files '("avr/lib")))))
|
(files '("avr/lib")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("gcc" ,gcc-5)
|
`(("gcc@5" ,gcc-5)
|
||||||
,@(package-native-inputs xgcc))))))
|
,@(package-native-inputs xgcc))))))
|
||||||
|
|
||||||
(define-public avr-gcc-5
|
(define-public avr-gcc-5
|
||||||
|
|
Reference in a new issue