all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH 1/4] gnu: Add gcc-objc-4.9.
@ 2016-05-16 18:14 Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 2/4] gnu: Add default gcc-objc Ricardo Wurmus
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-05-16 18:14 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gcc.scm (gcc-objc-4.9): New variable.
---
 gnu/packages/gcc.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 740ed51..64035b3 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -615,6 +615,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc-4.9
+  (custom-gcc gcc-4.9 "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++-4.8
   (custom-gcc gcc-4.8 "gcc-objc++" '("obj-c++")
               (list (search-path-specification
-- 
2.7.3

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

* [PATCH 2/4] gnu: Add default gcc-objc.
  2016-05-16 18:14 [PATCH 1/4] gnu: Add gcc-objc-4.9 Ricardo Wurmus
@ 2016-05-16 18:14 ` Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 3/4] gnu: Add gcc-objc++-4.9 Ricardo Wurmus
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-05-16 18:14 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gcc.scm (gcc-objc): New variable.
---
 gnu/packages/gcc.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 64035b3..d8b96c7 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -624,6 +624,8 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc gcc-objc-4.9)
+
 (define-public gcc-objc++-4.8
   (custom-gcc gcc-4.8 "gcc-objc++" '("obj-c++")
               (list (search-path-specification
-- 
2.7.3

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

* [PATCH 3/4] gnu: Add gcc-objc++-4.9.
  2016-05-16 18:14 [PATCH 1/4] gnu: Add gcc-objc-4.9 Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 2/4] gnu: Add default gcc-objc Ricardo Wurmus
@ 2016-05-16 18:14 ` Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 4/4] gnu: Add default gcc-objc++ Ricardo Wurmus
  2016-05-19 13:12 ` [PATCH 1/4] gnu: Add gcc-objc-4.9 Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-05-16 18:14 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gcc.scm (gcc-objc++-4.9): New variable.
---
 gnu/packages/gcc.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index d8b96c7..53b6c54 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -635,6 +635,15 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc++-4.9
+  (custom-gcc gcc-4.9 "gcc-objc++" '("obj-c++")
+              (list (search-path-specification
+                     (variable "OBJCPLUS_INCLUDE_PATH")
+                     (files '("include")))
+                    (search-path-specification
+                     (variable "LIBRARY_PATH")
+                     (files '("lib" "lib64"))))))
+
 (define (make-libstdc++-doc gcc)
   "Return a package with the libstdc++ documentation for GCC."
   (package
-- 
2.7.3

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

* [PATCH 4/4] gnu: Add default gcc-objc++.
  2016-05-16 18:14 [PATCH 1/4] gnu: Add gcc-objc-4.9 Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 2/4] gnu: Add default gcc-objc Ricardo Wurmus
  2016-05-16 18:14 ` [PATCH 3/4] gnu: Add gcc-objc++-4.9 Ricardo Wurmus
@ 2016-05-16 18:14 ` Ricardo Wurmus
  2016-05-19 13:12 ` [PATCH 1/4] gnu: Add gcc-objc-4.9 Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2016-05-16 18:14 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/gcc.scm (gcc-objc++): New variable.
---
 gnu/packages/gcc.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 53b6c54..233a20b 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -644,6 +644,8 @@ as the 'native-search-paths' field."
                      (variable "LIBRARY_PATH")
                      (files '("lib" "lib64"))))))
 
+(define-public gcc-objc++ gcc-objc++-4.9)
+
 (define (make-libstdc++-doc gcc)
   "Return a package with the libstdc++ documentation for GCC."
   (package
-- 
2.7.3

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

* Re: [PATCH 1/4] gnu: Add gcc-objc-4.9.
  2016-05-16 18:14 [PATCH 1/4] gnu: Add gcc-objc-4.9 Ricardo Wurmus
                   ` (2 preceding siblings ...)
  2016-05-16 18:14 ` [PATCH 4/4] gnu: Add default gcc-objc++ Ricardo Wurmus
@ 2016-05-19 13:12 ` Ludovic Courtès
  3 siblings, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2016-05-19 13:12 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Ricardo Wurmus <rekado@elephly.net> skribis:

> * gnu/packages/gcc.scm (gcc-objc-4.9): New variable.

[...]

> * gnu/packages/gcc.scm (gcc-objc): New variable.

[...]

> * gnu/packages/gcc.scm (gcc-objc++-4.9): New variable.

[...]

> * gnu/packages/gcc.scm (gcc-objc++): New variable.

All LGTM, thanks!

Ludo’.

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

end of thread, other threads:[~2016-05-19 13:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-16 18:14 [PATCH 1/4] gnu: Add gcc-objc-4.9 Ricardo Wurmus
2016-05-16 18:14 ` [PATCH 2/4] gnu: Add default gcc-objc Ricardo Wurmus
2016-05-16 18:14 ` [PATCH 3/4] gnu: Add gcc-objc++-4.9 Ricardo Wurmus
2016-05-16 18:14 ` [PATCH 4/4] gnu: Add default gcc-objc++ Ricardo Wurmus
2016-05-19 13:12 ` [PATCH 1/4] gnu: Add gcc-objc-4.9 Ludovic Courtès

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.