[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#68202] [PATCH 2/5] gnu: Add target-x32?.
From: |
Simon Tournier |
Subject: |
[bug#68202] [PATCH 2/5] gnu: Add target-x32?. |
Date: |
Mon, 8 Jan 2024 10:20:36 +0100 |
Hi,
On Tue, 2 Jan 2024 at 08:29, Efraim Flashner <efraim@flashner.co.il> wrote:
> +(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)))
Why not add it to target-x86-32? ?
Cheers,
simon
- [bug#68202] [PATCH 0/5] Add support for x86_64-linux-gnux32, Efraim Flashner, 2024/01/02
- [bug#68202] [PATCH 3/5] gnu: openssl: Fix building on x86_64-linux-gnux32., Efraim Flashner, 2024/01/02
- [bug#68202] [PATCH 4/5] gnu: gmp: Fix building on x86_64-linux-gnux32., Efraim Flashner, 2024/01/02
- [bug#68202] [PATCH 5/5] gnu: libsigsegv: Fix building for x86_64-linux-gnux32., Efraim Flashner, 2024/01/02
- [bug#68202] [PATCH 2/5] gnu: Add target-x32?., Efraim Flashner, 2024/01/02
- [bug#68202] [PATCH 2/5] gnu: Add target-x32?.,
Simon Tournier <=
- [bug#68202] [PATCH 1/5] gnu: Add support for x86_64-linux-gnux32., Efraim Flashner, 2024/01/02
- bug#68202: [PATCH 0/5] Add support for x86_64-linux-gnux32, Efraim Flashner, 2024/01/05
- [bug#68202] [PATCH 0/5] Add support for x86_64-linux-gnux32, Ludovic Courtès, 2024/01/08