[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/20: gnu: gcc: Also substitute the dynamic linker name for GNU (ie. Hu
From: |
Manolis Fragkiskos Ragkousis |
Subject: |
04/20: gnu: gcc: Also substitute the dynamic linker name for GNU (ie. Hurd) systems. |
Date: |
Thu, 11 Feb 2016 13:35:15 +0000 |
phant0mas pushed a commit to branch wip-hurd
in repository guix.
commit 35a973899e0bfb3f5e6069d41f39d88703a092f3
Author: Marek Benc <address@hidden>
Date: Thu Feb 5 17:12:54 2015 +0100
gnu: gcc: Also substitute the dynamic linker name for GNU (ie. Hurd)
systems.
* gnu/packages/gcc.scm (gcc-4.7): Also substitute the dynamic linker name
for GNU (ie. Hurd) systems.
Signed-off-by: Manolis Ragkousis <address@hidden>
---
gnu/packages/gcc.scm | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index 832e57b..851bf51 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -215,6 +215,13 @@ where the OS part is overloaded to denote a specific
ABI---into GCC
suffix
(string-append libc ,(glibc-dynamic-linker)))))
+ (substitute* (find-files "gcc/config"
+ "^gnu(64|-elf)?\\.h$")
+ (("#define GNU_USER_DYNAMIC_LINKER([^ ]*).*$" _ suffix)
+ (format #f "#define GNU_USER_DYNAMIC_LINKER~a \"~a\"~%"
+ suffix
+ (string-append libc ,(glibc-dynamic-linker)))))
+
;; Tell where to find libstdc++, libc, and `?crt*.o', except
;; `crt{begin,end}.o', which come with GCC.
(substitute* (find-files "gcc/config"
- branch wip-hurd created (now adce9bf), Manolis Fragkiskos Ragkousis, 2016/02/11
- 01/20: gnu: base: Add glibc-hurd and hurd-minimal., Manolis Fragkiskos Ragkousis, 2016/02/11
- 02/20: gnu: cross-base: Add support to cross-build libc for GNU/Hurd., Manolis Fragkiskos Ragkousis, 2016/02/11
- 03/20: gnu: cross-base: Make it aware of non-Linux (ie. Hurd) systems., Manolis Fragkiskos Ragkousis, 2016/02/11
- 04/20: gnu: gcc: Also substitute the dynamic linker name for GNU (ie. Hurd) systems.,
Manolis Fragkiskos Ragkousis <=
- 05/20: gnu: hurd: Pass --build to gnumach-headers when not cross building., Manolis Fragkiskos Ragkousis, 2016/02/11
- 06/20: gnu: hurd: Pass --build to hurd-headers when not cross building., Manolis Fragkiskos Ragkousis, 2016/02/11
- 07/20: gnu: base: Updated glibc-hurd to 2.19 and removed patches., Manolis Fragkiskos Ragkousis, 2016/02/11
- 08/20: gnu: base: Added glibc-for-target macro., Manolis Fragkiskos Ragkousis, 2016/02/11
- 09/20: gnu: cross-base: Build the correct cross-mig., Manolis Fragkiskos Ragkousis, 2016/02/11
- 10/20: gnu: base: Build glibc-hurd for i586-pc-gnu instead of i686-pc-gnu., Manolis Fragkiskos Ragkousis, 2016/02/11
- 11/20: gnu: make-bootstrap: Produce the correct %glibc-bootstrap-tarball for Hurd systems., Manolis Fragkiskos Ragkousis, 2016/02/11
- 12/20: gnu: base: Disable bogus code in Hurd's glibc., Manolis Fragkiskos Ragkousis, 2016/02/11
- 13/20: gnu: hurd: Add hurd-kernel-headers package., Manolis Fragkiskos Ragkousis, 2016/02/11
- 14/20: gnu: glibc/hurd: Use hurd-kernel-headers package., Manolis Fragkiskos Ragkousis, 2016/02/11