R: Fwd: [GNU bug Tracking System] bug#73864: Acknowledgement ([PATCH] gnu: rust: update to 1.82)

2024-10-21 Thread Marco Fortina
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

[bug#62917] [bug#73799] [PATCH] Fix 'guix shell: error: symlink: File exists: "/bin/cc"'

2024-10-22 Thread Marco Fortina
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

guix shell: error: symlink: File exists: "/bin/cc"

2024-10-14 Thread Marco Fortina
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

R: guix shell: error: symlink: File exists: "/bin/cc"

2024-10-24 Thread Marco Fortina
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