guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: rust-cpuid-bool-0.2: Only build on supported systems.


From: guix-commits
Subject: 01/03: gnu: rust-cpuid-bool-0.2: Only build on supported systems.
Date: Sun, 10 Dec 2023 06:46:28 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit b5dca274968133032b34da250d43ef2e5f46685b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Dec 10 11:49:25 2023 +0200

    gnu: rust-cpuid-bool-0.2: Only build on supported systems.
    
    * gnu/packages/crates-io.scm (rust-cpuid-bool-0.2)[arguments]: Skip the
    build unless building on x86_64-linux or i686-linux.
    
    Change-Id: I8e224618088154f45195405a13721d1e18b3be64
---
 gnu/packages/crates-io.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 962504164e..619c4a6aab 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -16844,6 +16844,9 @@ to the @code{is_x86_feature_detected!} macro.")
        (sha256
         (base32 "1fpzag3g655p1lr08jgf5n89snjc2ycqx30mm0w3irc9fc3mvcnw"))))
     (build-system cargo-build-system)
+    (arguments
+     ;; error: This crate works only on x86 and x86-64 targets.
+     (list #:skip-build? (not (target-x86?))))
     (home-page "https://github.com/RustCrypto/utils/tree/master/cpufeatures";)
     (synopsis "replaced by the `cpufeatures` crate")
     (description "This package has been replaced by the `cpufeatures` crate.")



reply via email to

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