guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: openssl: Fix cross compiling for powerpc tar


From: guix-commits
Subject: branch master updated: gnu: openssl: Fix cross compiling for powerpc targets.
Date: Sat, 21 Nov 2020 15:07:28 -0500

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c8535c2  gnu: openssl: Fix cross compiling for powerpc targets.
c8535c2 is described below

commit c8535c252776ce7da3310c549d211df74f30559b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sat Nov 21 22:05:44 2020 +0200

    gnu: openssl: Fix cross compiling for powerpc targets.
    
    * gnu/packages/tls.scm (openssl)[arguments]: Add cross compile target
    cases for powerpc64le-linux, powerpc64-linux and powerpc-linux.
---
 gnu/packages/tls.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/tls.scm b/gnu/packages/tls.scm
index c442097..00b0bf6 100644
--- a/gnu/packages/tls.scm
+++ b/gnu/packages/tls.scm
@@ -352,7 +352,13 @@ required structures.")
                            ((string-prefix? "arm" target)
                             "linux-armv4")
                            ((string-prefix? "aarch64" target)
-                            "linux-aarch64")))
+                            "linux-aarch64")
+                           ((string-prefix? "powerpc64le" target)
+                            "linux-ppc64le")
+                           ((string-prefix? "powerpc64" target)
+                            "linux-ppc64")
+                           ((string-prefix? "powerpc" target)
+                            "linux-ppc")))
                  #t)))
            '())
         (replace 'configure



reply via email to

[Prev in Thread] Current Thread [Next in Thread]