From: John Darrington <john@darrington.wattle.id.au>
To: guix-devel@gnu.org
Subject: [PATCH] partial fix for zlib cross compilation
Date: Tue, 10 Dec 2013 11:49:06 +0100 [thread overview]
Message-ID: <20131210104905.GA27631@jocasta.intra> (raw)
[-- Attachment #1: Type: text/plain, Size: 364 bytes --]
zlib in its wisdom, doesn't use autoconf. Hence there are special
methods for cross compiling. This patch implements one of these methods.
Certain targets will need further patches ...
--
PGP Public key ID: 1024D/2DE827B3
fingerprint = 8797 A26D 0854 2EAB 0285 A290 8A67 719C 2DE8 27B3
See http://sks-keyservers.net or any PGP keyserver for public key.
[-- Attachment #2: 0001-gnu-compression-Fix-cross-compilation-of-zlib.patch --]
[-- Type: text/x-diff, Size: 1441 bytes --]
From 592a7329b446d2d8e8a1f7c2e5e6bcb622c7c69c Mon Sep 17 00:00:00 2001
From: John Darrington <jmd@gnu.org>
Date: Mon, 9 Dec 2013 22:57:15 +0100
Subject: [PATCH] gnu: compression: Fix cross-compilation of zlib.
* gnu/packages/compression.scm : Zlib uses a non-standard
way of configuring for cross-compilation. Thanks to Ludovic
for showing me the correct way to fix this.
---
gnu/packages/compression.scm | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index efffa92..723caa8 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -48,8 +48,11 @@
;; extra flags like `--enable-fast-install', so we need to
;; invoke it with just what it understand.
(let ((out (assoc-ref outputs "out")))
- (zero? (system* "./configure"
- (string-append "--prefix=" out)))))
+ ,@(if (%current-target-system) `((setenv "CHOST"
+ ,(%current-target-system))) '())
+ (zero?
+ (system* "./configure"
+ (string-append "--prefix=" out)))))
%standard-phases)))
(home-page "http://zlib.net/")
(synopsis "The zlib compression library")
--
1.7.10.4
next reply other threads:[~2013-12-10 10:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-10 10:49 John Darrington [this message]
2013-12-10 13:00 ` [PATCH] partial fix for zlib cross compilation Ludovic Courtès
2013-12-10 13:47 ` John Darrington
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20131210104905.GA27631@jocasta.intra \
--to=john@darrington.wattle.id.au \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.