diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2003-01-02 21:40:41 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2003-01-02 21:40:41 +0000 |
commit | 78cc6ff144e55a84782c22ade0e4bfc63d2281ed (patch) | |
tree | a61564accda9894012dd61a6487dde86db9c7661 /sys-devel | |
parent | Bump to latest version. 2.2.x series is now officially stable. (diff) | |
download | historical-78cc6ff144e55a84782c22ade0e4bfc63d2281ed.tar.gz historical-78cc6ff144e55a84782c22ade0e4bfc63d2281ed.tar.bz2 historical-78cc6ff144e55a84782c22ade0e4bfc63d2281ed.zip |
change usage screen; bug #13005.
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/gcc-config/ChangeLog | 7 | ||||
-rw-r--r-- | sys-devel/gcc-config/files/gcc-config-1.2.7 | 51 |
2 files changed, 31 insertions, 27 deletions
diff --git a/sys-devel/gcc-config/ChangeLog b/sys-devel/gcc-config/ChangeLog index b902c55a539b..526fe3469a22 100644 --- a/sys-devel/gcc-config/ChangeLog +++ b/sys-devel/gcc-config/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-devel/gcc-config # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.12 2002/12/25 21:37:47 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/ChangeLog,v 1.13 2003/01/02 21:40:41 azarah Exp $ + + 02 Jan 2003; Martin Schlemmer <azarah@gentoo.org> gcc-config-1.2.7 : + + Update usage screen to be more compact. Also should be more consistant + with other unix tools. Bug #13005. *gcc-config-1.2.7 (25 Dec 2002) diff --git a/sys-devel/gcc-config/files/gcc-config-1.2.7 b/sys-devel/gcc-config/files/gcc-config-1.2.7 index 8d0585779bf8..328b54b2a8aa 100644 --- a/sys-devel/gcc-config/files/gcc-config-1.2.7 +++ b/sys-devel/gcc-config/files/gcc-config-1.2.7 @@ -2,7 +2,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Martin Schlemmer <azarah@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.2.7,v 1.1 2002/12/25 21:37:47 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc-config/files/gcc-config-1.2.7,v 1.2 2003/01/02 21:40:41 azarah Exp $ source /etc/init.d/functions.sh || { @@ -12,43 +12,42 @@ source /etc/init.d/functions.sh || { usage() { cat << "USAGE_END" -Usage: gcc-config [Option] <CHOST>-<gcc version> +Usage: gcc-config [Option] [GCC Profile] +Change the current gcc profile, or give info about profiles. + Options: - [--use-old] - Use the old profile if one was selected. + --use-old Use the old profile if one was selected. - [--use-portage-chost] - - Only set to given profile if its CHOST is the same as that - set for portage in /etc/make.conf (or one of other portage - config files...). + --use-portage-chost Only set to given profile if its CHOST is the same + as that set for portage in /etc/make.conf (or one of + other portage config files...). - [--get-current-profile] - - Print current used gcc profile. - - [--list-profiles] - - Print a list of available profiles. + --get-current-profile Print current used gcc profile. - [--print-environ] + --list-profiles Print a list of available profiles. - Print environment that can be used to setup things for current - gcc profile, or specified one ... + --print-environ Print environment that can be used to setup things + for current gcc profile, or specified one ... - [--get-bin-path] + --get-bin-path Print path where binaries of given/current profile + are located. + + --get-lib-path Print path where libraries of given/current profile + are located. - Print path where binaries of given/current profile are located. + --get-stdcxx-incdir Print path to g++ include files of given/current + profile. - [--get-lib-path] +The profile name is in the form of: - Print path where libraries of given/current profile are located. + <CHOST>-<gcc version> + +For example: + + i686-pc-linux-gnu-3.2.1 - [--get-stdcxx-incdir] - Print path to g++ include files of given/current profile. - USAGE_END |