File tree Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Expand file tree Collapse file tree 1 file changed +10
-9
lines changed Original file line number Diff line number Diff line change 22
22
using namespace std ;
23
23
24
24
const char *ArgParser::HELP_MSG =
25
- " \n JRuby Launcher usage: jruby" EXEEXT " {options} arguments\n \
25
+ " JRuby Launcher usage: jruby" EXEEXT " {options} arguments\n \n \
26
26
Options:\n \
27
27
-Xhelp show this help\n \
28
- -Xjdkhome <path> path to JDK\n \
28
+ -Xversion print launcher's version\n \
29
+ \n Jvm Management:\n \
30
+ -Xjdkhome <path> set path to JDK\n \
31
+ -Xfork-java run java in separate process\n \
29
32
-J<jvm_option> pass <jvm_option> to JVM\n \
30
- \n \
33
+ \n Classpath Management: \ n \
31
34
-Xcp <classpath> set the classpath\n \
32
35
-Xcp:p <classpath> prepend <classpath> to classpath\n \
33
36
-Xcp:a <classpath> append <classpath> to classpath\n \
34
- \n \
35
- -Xfork-java run java in separate process \n \
37
+ -Xnobootclasspath don't put jruby jars on the bootclasspath \n \
38
+ \n Misc: \n \
36
39
-Xtrace <path> path for launcher log (for troubleshooting)\n \
37
- -Xcommand just print the equivalent java command and exit\n \
38
- -Xnobootclasspath don't put jruby jars on the bootclasspath\n "
40
+ -Xcommand just print the equivalent java command and exit\n "
39
41
#ifdef WIN32
40
42
" -Xconsole <mode> jrubyw console attach mode (new|attach|suppress)\n\n "
41
43
#endif
42
- " To see general JRuby options, type 'jruby -h' or 'jruby --help'.\n \
43
- --------------------------------------------------------------------\n\n " ;
44
+ " To see general JRuby options, type 'jruby -h' or 'jruby --help'.\n " ;
44
45
45
46
const char *ArgParser::REQ_JAVA_VERSION = " 1.5" ;
46
47
You can’t perform that action at this time.
0 commit comments