guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: Add target-x32?.


From: guix-commits
Subject: 02/05: gnu: Add target-x32?.
Date: Thu, 4 Jan 2024 14:50:27 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 433b680dd6ac100ef6940c20b4aeb4e5c64f0e05
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jan 2 09:27:33 2024 +0200

    gnu: Add target-x32?.
    
    * guix/utils.scm (target-x32?): New procedure.
    
    Change-Id: Ia16c7edce64de01d5ccb126c7bd9a6736f327b5f
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 guix/utils.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/guix/utils.scm b/guix/utils.scm
index f4bf965e9a..e4e9d922e7 100644
--- a/guix/utils.scm
+++ b/guix/utils.scm
@@ -97,6 +97,7 @@
             target-x86-32?
             target-x86-64?
             target-x86?
+            target-x32?
             target-arm32?
             target-aarch64?
             target-arm?
@@ -712,6 +713,13 @@ a character other than '@'."
 architecture (x86_64)?"
   (string-prefix? "x86_64-" target))
 
+(define* (target-x32? #:optional (target (or (%current-target-system)
+                                             (%current-system))))
+  "Is the architecture of TARGET a variant of Intel/AMD's 64-bit
+architecture (x86_64) using 32-bit data types?"
+  (and (target-x86-64? target)
+       (string-suffix? "gnux32" target)))
+
 (define* (target-x86? #:optional (target (or (%current-target-system)
                                              (%current-system))))
   (or (target-x86-32? target) (target-x86-64? target)))



reply via email to

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