X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=libjava%2Fgij.cc;h=a3b8529c4c94a57e1b1e6363632f85f1213a3740;hb=24f794d75bfb3483e0db793d07ef728fa0974620;hp=7c8d8b4222b45c71e23d14f070cecd17d5c3f74d;hpb=3f2b0698ca2600a813b37f1513c79c84b227b8cc;p=pf3gnuchains%2Fgcc-fork.git diff --git a/libjava/gij.cc b/libjava/gij.cc index 7c8d8b4222b..a3b8529c4c9 100644 --- a/libjava/gij.cc +++ b/libjava/gij.cc @@ -1,4 +1,4 @@ -/* Copyright (C) 1999-2005 Free Software Foundation +/* Copyright (C) 1999-2006 Free Software Foundation This file is part of libgcj. @@ -42,7 +42,7 @@ version () { printf ("java version \"" JV_VERSION "\"\n"); printf ("gij (GNU libgcj) version %s\n\n", __VERSION__); - printf ("Copyright (C) 2005 Free Software Foundation, Inc.\n"); + printf ("Copyright (C) 2006 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"); } @@ -52,6 +52,7 @@ nonstandard_opts_help () { printf (" -Xms set initial heap size\n"); printf (" -Xmx set maximum heap size\n"); + printf (" -Xss set thread stack size\n"); exit (0); } @@ -120,11 +121,11 @@ main (int argc, char const** argv) continue; else if (! strcmp (arg, "-jrockit")) continue; - // Ignore JVM Tool Interface options + // JVM Tool Interface options. else if (! strncmp (arg, "-agentlib:", sizeof ("-agentlib:") - 1)) - continue; + add_option (vm_args, arg, NULL); else if (! strncmp (arg, "-agentpath:", sizeof ("-agentpath:") - 1)) - continue; + add_option (vm_args, arg, NULL); else if (! strcmp (arg, "-classpath") || ! strcmp (arg, "-cp")) { if (i >= argc - 1)