diff options
author | Anthony Green <green@gcc.gnu.org> | 2002-04-12 14:28:50 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2002-04-12 14:28:50 +0000 |
commit | 9fef1fe3e4efbd44157c8796db3909097fab7e27 (patch) | |
tree | c805c665a66c87dca37b7dfcf03d737017b9baf0 /gcc/java/gcj.texi | |
parent | 395cb211416da7def56ca50868c8f1379f99fcda (diff) | |
download | gcc-9fef1fe3e4efbd44157c8796db3909097fab7e27.zip gcc-9fef1fe3e4efbd44157c8796db3909097fab7e27.tar.gz gcc-9fef1fe3e4efbd44157c8796db3909097fab7e27.tar.bz2 |
Add --extdirs support.
From-SVN: r52227
Diffstat (limited to 'gcc/java/gcj.texi')
-rw-r--r-- | gcc/java/gcj.texi | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi index 1395b11..814c182 100644 --- a/gcc/java/gcj.texi +++ b/gcc/java/gcj.texi @@ -257,6 +257,10 @@ Deprecated synonym for @code{--classpath}. @item --bootclasspath=@var{path} Where to find the standard builtin classes, such as @code{java.lang.String}. +@item --extdirs=@var{path} +For each directory in the @var{path}, place the contents of that +directory at the end of the class path. + @item CLASSPATH This is an environment variable which holds a list of paths. @end table @@ -274,8 +278,13 @@ then its value is appended. Otherwise, the current directory (@code{"."}) is appended. @item -Finally, if @code{--bootclasspath} was specified, append its value. +If @code{--bootclasspath} was specified, append its value. Otherwise, append the built-in system directory, @file{libgcj.jar}. + +@item +Finaly, if @code{--extdirs} was specified, append the contents of the +specified directories at the end of the class path. Otherwise, append +the contents of the built-in extdirs at @code{$(prefix)/share/java/ext}. @end itemize The classfile built by @command{gcj} for the class @code{java.lang.Object} |