diff options
author | Tom Tromey <tromey@redhat.com> | 2002-10-25 03:28:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2002-10-25 03:28:00 +0000 |
commit | ca7c2b85296ad76d29df2519a0977b26a5135aff (patch) | |
tree | 243b0dfebdb97fccd2f16106858d75fb715cf163 /libjava/gij.cc | |
parent | 3752ac0803ae8d51297fcd46ba2f827bf50571fb (diff) | |
download | gcc-ca7c2b85296ad76d29df2519a0977b26a5135aff.zip gcc-ca7c2b85296ad76d29df2519a0977b26a5135aff.tar.gz gcc-ca7c2b85296ad76d29df2519a0977b26a5135aff.tar.bz2 |
natRuntime.cc (_Jv_SetDLLSearchPath): New function.
* java/lang/natRuntime.cc (_Jv_SetDLLSearchPath): New function.
(_Jv_FindSymbolInExecutable): Removed argument name.
(insertSystemProperties): Call _Jv_SetDLLSearchPath if
java.library.path is set.
* gij.cc (help): Document --showversion.
(version): Don't exit.
(main): Handle --showversion. Exit if --version given.
From-SVN: r58520
Diffstat (limited to 'libjava/gij.cc')
-rw-r--r-- | libjava/gij.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libjava/gij.cc b/libjava/gij.cc index 47b2d60..293f3c3 100644 --- a/libjava/gij.cc +++ b/libjava/gij.cc @@ -34,6 +34,7 @@ help () printf (" --help print this help, then exit\n"); printf (" --ms=NUMBER set initial heap size\n"); printf (" --mx=NUMBER set maximum heap size\n"); + printf (" --showversion print version number, then keep going\n"); printf (" --version print version number, then exit\n"); printf ("\nOptions can be specified with `-' or `--'.\n"); printf ("\nSee http://gcc.gnu.org/java/ for information on reporting bugs\n"); @@ -47,7 +48,6 @@ version () printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n"); printf ("This is free software; see the source for copying conditions. There is NO\n"); printf ("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"); - exit (0); } int @@ -93,6 +93,11 @@ main (int argc, const char **argv) if (! strcmp (arg, "-help")) help (); else if (! strcmp (arg, "-version")) + { + version (); + exit (0); + } + else if (! strcmp (arg, "-showversion")) version (); /* FIXME: use getopt and avoid the ugliness here. We at least need to handle the argument in a better way. */ |