unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#32612: Update all gcc compilers to be 8.2.0
@ 2018-09-02 15:20 Eric Brown
  2018-09-06 21:39 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Brown @ 2018-09-02 15:20 UTC (permalink / raw)
  To: 32612

[-- Attachment #1: Type: text/plain, Size: 51 bytes --]

Update all compilers (e.g. gfortran) to be 8.2.0.


[-- Attachment #2: 0001-gnu-gcc-8-Update-all-compilers-to-8.2.0.patch --]
[-- Type: text/x-diff, Size: 2301 bytes --]

From 70d1ba70de5279a5ef471e4a0287557ca598134f Mon Sep 17 00:00:00 2001
From: Eric Brown <brown@fastmail.com>
Date: Sun, 2 Sep 2018 09:27:56 -0500
Subject: [PATCH] gnu: gcc@8: Update all compilers to 8.2.0.

* gnu/packages/gcc.scm (gfortran-8): Update to 8.2.0.
* gnu/packages/gcc.scm (gcc-objc-8): Update to 8.2.0.
* gnu/packages/gcc.scm (gcc-objc++-8): Update to 8.2.0.
---
 gnu/packages/gcc.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index bdff2ddad..0dd5d6446 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -663,6 +663,10 @@ as the 'native-search-paths' field."
   (custom-gcc gcc-7 "gfortran" '("fortran")
               %generic-search-paths))
 
+(define-public gfortran-8
+  (custom-gcc gcc-8 "gfortran" '("fortran")
+              %generic-search-paths))
+
 (define-public gfortran
   ;; Note: Update this when GCC changes!  We cannot use
   ;; (custom-gcc gcc "fortran" …) because that would lead to a package object
@@ -723,6 +727,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc-8
+  (custom-gcc gcc-8 "gcc-objc" '("objc")
+              (list (search-path-specification
+                     (variable "OBJC_INCLUDE_PATH")
+                     (files '("include")))
+                    (search-path-specification
+                     (variable "LIBRARY_PATH")
+                     (files '("lib" "lib64"))))))
+
 (define-public gcc-objc gcc-objc-5)
 
 (define-public gcc-objc++-4.8
@@ -770,6 +783,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc++-8
+  (custom-gcc gcc-8 "gcc-objc++" '("obj-c++")
+              (list (search-path-specification
+                     (variable "OBJCPLUS_INCLUDE_PATH")
+                     (files '("include")))
+                    (search-path-specification
+                     (variable "LIBRARY_PATH")
+                     (files '("lib" "lib64"))))))
+
 (define-public gcc-objc++ gcc-objc++-5)
 
 (define (make-libstdc++-doc gcc)
-- 
2.18.0


[-- Attachment #3: 0001-gnu-gcc-8-Update-all-compilers-to-8.2.0.patch --]
[-- Type: text/x-diff, Size: 2301 bytes --]

From 70d1ba70de5279a5ef471e4a0287557ca598134f Mon Sep 17 00:00:00 2001
From: Eric Brown <brown@fastmail.com>
Date: Sun, 2 Sep 2018 09:27:56 -0500
Subject: [PATCH] gnu: gcc@8: Update all compilers to 8.2.0.

* gnu/packages/gcc.scm (gfortran-8): Update to 8.2.0.
* gnu/packages/gcc.scm (gcc-objc-8): Update to 8.2.0.
* gnu/packages/gcc.scm (gcc-objc++-8): Update to 8.2.0.
---
 gnu/packages/gcc.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index bdff2ddad..0dd5d6446 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -663,6 +663,10 @@ as the 'native-search-paths' field."
   (custom-gcc gcc-7 "gfortran" '("fortran")
               %generic-search-paths))
 
+(define-public gfortran-8
+  (custom-gcc gcc-8 "gfortran" '("fortran")
+              %generic-search-paths))
+
 (define-public gfortran
   ;; Note: Update this when GCC changes!  We cannot use
   ;; (custom-gcc gcc "fortran" …) because that would lead to a package object
@@ -723,6 +727,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc-8
+  (custom-gcc gcc-8 "gcc-objc" '("objc")
+              (list (search-path-specification
+                     (variable "OBJC_INCLUDE_PATH")
+                     (files '("include")))
+                    (search-path-specification
+                     (variable "LIBRARY_PATH")
+                     (files '("lib" "lib64"))))))
+
 (define-public gcc-objc gcc-objc-5)
 
 (define-public gcc-objc++-4.8
@@ -770,6 +783,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc++-8
+  (custom-gcc gcc-8 "gcc-objc++" '("obj-c++")
+              (list (search-path-specification
+                     (variable "OBJCPLUS_INCLUDE_PATH")
+                     (files '("include")))
+                    (search-path-specification
+                     (variable "LIBRARY_PATH")
+                     (files '("lib" "lib64"))))))
+
 (define-public gcc-objc++ gcc-objc++-5)
 
 (define (make-libstdc++-doc gcc)
-- 
2.18.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#32612: Update all gcc compilers to be 8.2.0
  2018-09-02 15:20 bug#32612: Update all gcc compilers to be 8.2.0 Eric Brown
@ 2018-09-06 21:39 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2018-09-06 21:39 UTC (permalink / raw)
  To: Eric Brown; +Cc: 32612-done

Hi Eric,

Eric Brown <brown@fastmail.com> skribis:

>From 70d1ba70de5279a5ef471e4a0287557ca598134f Mon Sep 17 00:00:00 2001
> From: Eric Brown <brown@fastmail.com>
> Date: Sun, 2 Sep 2018 09:27:56 -0500
> Subject: [PATCH] gnu: gcc@8: Update all compilers to 8.2.0.
>
> * gnu/packages/gcc.scm (gfortran-8): Update to 8.2.0.
> * gnu/packages/gcc.scm (gcc-objc-8): Update to 8.2.0.
> * gnu/packages/gcc.scm (gcc-objc++-8): Update to 8.2.0.

I adjusted the commit log and pushed as
f66be84d08b90a9ecf08f79c8156d072ad359c36.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-06 21:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-02 15:20 bug#32612: Update all gcc compilers to be 8.2.0 Eric Brown
2018-09-06 21:39 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).