diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/java/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/java/gcj.texi | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 248627a..a03c660 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,7 @@ +2005-03-07 Tom Tromey <tromey@redhat.com> + + * gcj.texi (Invoking gcj-dbtool): Document '-f'. + 2005-03-06 Kazu Hirata <kazu@cs.umass.edu> * jcf-dump.c, jcf-io.c, jcf-reader.c, lang.c, parse.h, diff --git a/gcc/java/gcj.texi b/gcc/java/gcj.texi index b270b6f..227c230 100644 --- a/gcc/java/gcj.texi +++ b/gcc/java/gcj.texi @@ -990,7 +990,8 @@ Each time a class is initialized, print a short message on standard error. @c man begin SYNOPSIS gcj-dbtool gcj-dbtool @option{OPTION} @var{DBFILE} [@option{MORE}] @dots{} -gcj-dbtool [@option{-n}] [@option{-a}] [@option{-t}] [@option{-l}] +gcj-dbtool [@option{-n}] [@option{-a}] [@option{-f}] + [@option{-t}] [@option{-l}] [@option{-v}] [@option{--version}] [@option{--help}] @c man end @@ -1027,11 +1028,14 @@ you can choose a larger initial size if desired. The default size is 32,749. @item -a @var{DBFILE} @var{JARFILE} @var{LIB} +@itemx -f @var{DBFILE} @var{JARFILE} @var{LIB} This adds a jar file to the database. For each class file in the jar, a cryptographic signature of the bytecode representation of the class is recorded in the database. At runtime, a class is looked up by its signature and the compiled form of the class is looked for in the -corresponding shared library. +corresponding shared library. The @option{-a} option will verify +that @var{LIB} exists before adding it to the database; @option{-f} +skips this check. @item -t @var{DBFILE} Test a database. |