diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-03 08:33:59 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-03 08:33:59 +0000 |
commit | 5609b23bc882eb995c7f7136ba2092857963b2f5 (patch) | |
tree | a0a6d4764285736c7fd879e0516da8a90f537511 /gcc/gcc.c | |
parent | 6ddaf25364e6bbab771d57b9af827909d95af727 (diff) | |
download | ppe42-gcc-5609b23bc882eb995c7f7136ba2092857963b2f5.tar.gz ppe42-gcc-5609b23bc882eb995c7f7136ba2092857963b2f5.zip |
* gcc.c (option_map): Suport new --bootclasspath option.
--CLASSPATH is now just an alias for --classpath.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@50246 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index a911793f371..69e4f7fbfc0 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -906,7 +906,8 @@ static const struct option_map option_map[] = {"--assemble", "-S", 0}, {"--assert", "-A", "a"}, {"--classpath", "-fclasspath=", "aj"}, - {"--CLASSPATH", "-fCLASSPATH=", "aj"}, + {"--bootclasspath", "-fbootclasspath=", "aj"}, + {"--CLASSPATH", "-fclasspath=", "aj"}, {"--comments", "-C", 0}, {"--compile", "-c", 0}, {"--debug", "-g", "oj"}, |