Is there any plan to add rustup to the package as well? This is useful for
adding targets for cross-compilation.
Cheers,
Marco
Da: guix-devel-bounces+marco_fortina=hotmail...@gnu.org
per conto di Brennan
Vincent
Inviato: lunedì 21 ottobre 2024 22:34
A: di...@s
This patch closes issue when running "guix shell --container --emulate-fhs
clang-toolchain gcc-toolchain" or "guix shell --container --emulate-fhs
clang-toolchain gcc-toolchain":
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm
index a219b2ac89..37f11395f9 100644
--- a/g
Hello there.
I have this issue when with guix time-machine shell when using --emulate-fhs
option and having gcc-toolset and clang-toolset in my manifest.scm.
I this this could be solved with this patch:
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 9f851a478e..7a276569e9 1006
ink to /bin.
(let ((gcc-path (string-append profile "/bin/gcc")))
-(if (file-exists? gcc-path)
+(if (and (file-exists? gcc-path)
+ (not (file-exists? "/bin/cc")))
(symlink gcc-path "/bin/cc")))
;; Guix's ldconfig doesn't sear