[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Glibc/hurd work till now
From: |
Manolis Ragkousis |
Subject: |
Re: Glibc/hurd work till now |
Date: |
Fri, 21 Mar 2014 23:23:32 +0000 |
I started writing the macro that chooses between ‘glibc/linux’ and ‘glibc/hurd’ so I added #:export (glibc) at defined modules, renamed glibc to glibc/linux and then I added
(define (glibc-for-target target)
"Return the glibc for TARGET, glibc/linux for a linux host or
glibc/hurd for a hurd host"
(match target
("i686-pc-gnu" glibc/hurd)
(_ glibc/linux)))
(define-syntax glibc
(identifier-syntax (glibc-for-target (%current-target-system))))
build.log
Description: Text document
- Re: Glibc/hurd work till now, (continued)
- Re: Glibc/hurd work till now, Manolis Ragkousis, 2014/03/19
- Re: Glibc/hurd work till now, Ludovic Courtès, 2014/03/19
- Re: Glibc/hurd work till now, Manolis Ragkousis, 2014/03/19
- Re: Glibc/hurd work till now, Ludovic Courtès, 2014/03/19
- Re: Glibc/hurd work till now, Manolis Ragkousis, 2014/03/20
- libpthread fails to build as an add-on, Ludovic Courtès, 2014/03/20
- Re: libpthread fails to build as an add-on, Manolis Ragkousis, 2014/03/20
- Re: libpthread fails to build as an add-on, Manolis Ragkousis, 2014/03/23
- Re: libpthread fails to build as an add-on, Manolis Ragkousis, 2014/03/23
- Re: libpthread fails to build as an add-on, Ludovic Courtès, 2014/03/23
- Re: Glibc/hurd work till now,
Manolis Ragkousis <=
- Re: Glibc/hurd work till now, Ludovic Courtès, 2014/03/22
- Re: Glibc/hurd work till now, Manolis Ragkousis, 2014/03/22