From f17e1802ec325e5cc86d4908f05ac69aafdf39da Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Thu, 10 Sep 2020 09:53:32 +0200 Subject: gnu: gcc-toolchain: Make "gcc" a "deprecated" alias for "gcc-toolchain". Fixes . Reported by Jeffrey Walton . * gnu/packages/commencement.scm (gcc-toolchain-aka-gcc): New variable. --- gnu/packages/commencement.scm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gnu/packages/commencement.scm') diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index aa30e3fa18..cc86d06c65 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3902,6 +3902,12 @@ binaries, plus debugging symbols in the @code{debug} output), and Binutils.") (define-public gcc-toolchain-10 (make-gcc-toolchain gcc-10)) +(define-public gcc-toolchain-aka-gcc + ;; It's natural for users to try "guix install gcc". This package + ;; automatically "redirects" them to 'gcc-toolchain'. + (deprecated-package "gcc" gcc-toolchain-10)) + + (define-public gdc-toolchain-10 (package (inherit (make-gcc-toolchain gdc-10)) (synopsis "Complete GCC tool chain for D lang development") -- cgit v1.2.3 From 0214d5dd849c140707345885cf899fa46d656021 Mon Sep 17 00:00:00 2001 From: zimoun Date: Fri, 11 Sep 2020 18:08:00 +0200 Subject: gnu: gcc-toolchain: Reword description. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/commencement.scm (make-gcc-toolchain)[description]: Reword. Signed-off-by: Ludovic Courtès --- gnu/packages/commencement.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gnu/packages/commencement.scm') diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index cc86d06c65..565799c611 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -3861,7 +3861,8 @@ COREUTILS-FINAL vs. COREUTILS, etc." (description "This package provides a complete GCC tool chain for C/C++ development to be installed in user profiles. This includes GCC, as well as libc (headers and -binaries, plus debugging symbols in the @code{debug} output), and Binutils.") +binaries, plus debugging symbols in the @code{debug} output), and Binutils. GCC +is the GNU Compiler Collection.") (home-page "https://gcc.gnu.org/") (outputs '("out" "debug" "static")) -- cgit v1.2.3