guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4f0488bcc988eb7d1a1018544e19d7fa6bcb7804
Author: Cayetano Santos <[email protected]>
AuthorDate: Thu Jul 9 12:14:08 2026 +0200
gnu: abc: Build with clang.
* gnu/packages/electronics.scm (abc)[arguments]: Update
[native-inputs]: Add clang.
Merges guix/guix!9843
Signed-off-by: Cayetano Santos <[email protected]>
---
gnu/packages/electronics.scm | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index 4fbddef234..891ded9a49 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -276,9 +276,8 @@ are also taken from the original.")
(build-system cmake-build-system)
(arguments
(list #:configure-flags
- #~(list (string-append "-DCMAKE_C_COMPILER=" #$(cc-for-target))
- (string-append "-DCMAKE_CXX_COMPILER="
- #$(cxx-for-target)))
+ #~(list "-DCMAKE_C_COMPILER=clang"
+ "-DCMAKE_CXX_COMPILER=clang++")
#:phases
#~(modify-phases %standard-phases
(replace 'install
@@ -293,7 +292,7 @@ are also taken from the original.")
(inputs
(list readline))
(native-inputs
- (list googletest perl))
+ (list clang googletest perl))
(home-page "https://people.eecs.berkeley.edu/~alanmi/abc/")
(synopsis "Sequential logic synthesis and formal verification")
(description "ABC is a program for sequential logic synthesis and