diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-12 14:28:50 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-12 14:28:50 +0000 |
commit | 7a80ddca002da1f499be515482f673679363f39d (patch) | |
tree | c805c665a66c87dca37b7dfcf03d737017b9baf0 /gcc/java/gcj.texi | |
parent | 8d842e3797679e13a27f8358acca4b5fa4e92428 (diff) | |
download | gcc-7a80ddca002da1f499be515482f673679363f39d.tar.gz |
Add --extdirs support.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52227 138bc75d-0d04-0410-961f-82ee72b054a4
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 1395b11ac40..814c182a803 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} |