[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: transformations: Add support for rust.
From: |
guix-commits |
Subject: |
05/07: transformations: Add support for rust. |
Date: |
Sun, 10 Mar 2024 06:51:47 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 92bd81a96f4cac9d0fe628b82ffb1d127ad3e42f
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Mar 6 13:06:09 2024 +0200
transformations: Add support for rust.
* guix/transformations.scm (tuning-compiler): Add support for rustc.
Change-Id: I6db596a586eda648666550cdcadaa5e1704cb79c
---
guix/transformations.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/guix/transformations.scm b/guix/transformations.scm
index 132ccd957a..f02b9f94d6 100644
--- a/guix/transformations.scm
+++ b/guix/transformations.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2016-2023 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2023 Sarthak Shah <shahsarthakw@gmail.com>
-;;; Copyright © 2023 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2023, 2024 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2023 Ekaitz Zarraga <ekaitz@elenq.tech>
;;;
;;; This file is part of GNU Guix.
@@ -499,6 +499,10 @@ actual compiler."
"-Dcpu="
(string-replace-substring
#$micro-architecture "-" "_"))))
+ ((and (search-next "rustc")
+ (string=? next (search-next "rustc")))
+ (list "-C" (string-append "target_cpu="
+ #$micro-architecture)))
(else
(list (string-append "-march="
#$micro-architecture))))))))))))
@@ -519,7 +523,7 @@ actual compiler."
(symlink #$program
(string-append bin "/" program)))
'("cc" "gcc" "clang" "g++" "c++" "clang++"
- "go" "zig")))))))
+ "go" "rustc" "zig")))))))
(define (build-system-with-tuning-compiler bs micro-architecture)
"Return a variant of BS, a build system, that ensures that the compiler that
- branch master updated (3b38cbe8c2 -> 2a8018e42c), guix-commits, 2024/03/10
- 02/07: gnu: clang: Move compiler-cpu-architectures to llvm-meta.scm., guix-commits, 2024/03/10
- 07/07: gnu: python-next: Skip another test., guix-commits, 2024/03/10
- 01/07: gnu: check-0.14: Fix build on powerpc-linux., guix-commits, 2024/03/10
- 06/07: gnu: rav1e: Mark as tunable., guix-commits, 2024/03/10
- 03/07: cpu: Remove duplicate clang-compiler-cpu-architecture entry., guix-commits, 2024/03/10
- 04/07: gnu: rust: Add tuning information., guix-commits, 2024/03/10
- 05/07: transformations: Add support for rust.,
guix-commits <=