mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: gcc-objc, gcc-objc++: Declare variants for GCC 11 and GCC 12.
* gnu/packages/gcc.scm (gcc-objc-11, gcc-objc-12, gcc-objc++-11, gcc-objc++-12): New variables.
This commit is contained in:
parent
a21583de54
commit
b36c41ee54
1 changed files with 16 additions and 0 deletions
|
@ -1101,6 +1101,14 @@ provides the GNU compiler for the Go programming language."))
|
|||
(custom-gcc gcc-10 "gcc-objc" '("objc")
|
||||
%objc-search-paths))
|
||||
|
||||
(define-public gcc-objc-11
|
||||
(custom-gcc gcc-11 "gcc-objc" '("objc")
|
||||
%objc-search-paths))
|
||||
|
||||
(define-public gcc-objc-12
|
||||
(custom-gcc gcc-12 "gcc-objc" '("objc")
|
||||
%objc-search-paths))
|
||||
|
||||
(define-public gcc-objc gcc-objc-10)
|
||||
|
||||
(define %objc++-search-paths
|
||||
|
@ -1143,6 +1151,14 @@ provides the GNU compiler for the Go programming language."))
|
|||
(custom-gcc gcc-10 "gcc-objc++" '("obj-c++")
|
||||
%objc++-search-paths))
|
||||
|
||||
(define-public gcc-objc++-11
|
||||
(custom-gcc gcc-11 "gcc-objc++" '("obj-c++")
|
||||
%objc++-search-paths))
|
||||
|
||||
(define-public gcc-objc++-12
|
||||
(custom-gcc gcc-12 "gcc-objc++" '("obj-c++")
|
||||
%objc++-search-paths))
|
||||
|
||||
(define-public gcc-objc++ gcc-objc++-10)
|
||||
|
||||
(define (make-libstdc++-doc gcc)
|
||||
|
|
Loading…
Reference in a new issue