aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/lang-options.h
diff options
context:
space:
mode:
authorPer Bothner <per@bothner.com>2002-03-03 00:35:11 -0800
committerPer Bothner <bothner@gcc.gnu.org>2002-03-03 00:35:11 -0800
commit2a85660dc27b7059ea083a775a99a0c206abeee4 (patch)
tree2d5ffb4752a4b455256e860f15ecb662d91ac6e9 /gcc/java/lang-options.h
parentc26a6db811ab9dd1dd94c1b410cb93871d6d1a47 (diff)
downloadgcc-2a85660dc27b7059ea083a775a99a0c206abeee4.zip
gcc-2a85660dc27b7059ea083a775a99a0c206abeee4.tar.gz
gcc-2a85660dc27b7059ea083a775a99a0c206abeee4.tar.bz2
Make --CLASSPATH by a synonym for --classpath and -classpath.
Implement --bootclasspath. From-SVN: r50247
Diffstat (limited to 'gcc/java/lang-options.h')
-rw-r--r--gcc/java/lang-options.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/java/lang-options.h b/gcc/java/lang-options.h
index 3397fa8..90e3190 100644
--- a/gcc/java/lang-options.h
+++ b/gcc/java/lang-options.h
@@ -34,10 +34,12 @@ DEFINE_LANG_NAME ("Java")
N_("Disable assignability checks for stores into object arrays") },
{ "-fjni",
N_("Assume native functions are implemented using JNI") },
- { "--CLASSPATH",
- N_("Set class path and suppress system path") },
+ { "--bootclasspath",
+ N_("Replace system path") },
{ "--classpath",
N_("Set class path") },
+ { "--CLASSPATH",
+ N_("Set class path (deprecated: use --classpath instead)") },
{ "--main",
N_("Choose class whose main method should be used") },
{ "--encoding",