Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fractal
fractal
Commits
2799d332
Commit
2799d332
authored
Dec 16, 2017
by
Lionel Seinturier
Browse files
Add missing option in the usage message.
parent
57e81d82
Changes
1
Hide whitespace changes
Inline
Side-by-side
juliac/core/src/main/java/org/objectweb/fractal/juliac/JuliacCmdLine.java
View file @
2799d332
...
...
@@ -36,6 +36,7 @@ import org.objectweb.fractal.api.factory.InstantiationException;
import
org.objectweb.fractal.juliac.commons.util.CmdLineArgs
;
import
org.objectweb.fractal.juliac.conf.JDKLevel
;
import
org.objectweb.fractal.juliac.conf.JuliacConfig
;
import
org.objectweb.fractal.juliac.module.JuliacModuleItf
;
/**
* The Juliac command line entry point.
...
...
@@ -267,7 +268,7 @@ public class JuliacCmdLine {
JuliacConfig
jconf
=
new
JuliacConfig
();
Logger
logger
=
jconf
.
getLogger
();
logger
.
info
(
"java "
+
Juliac
.
class
.
getName
()+
" [options] types"
);
logger
.
info
(
"java "
+
Juliac
CmdLine
.
class
.
getName
()+
" [options] types"
);
logger
.
info
(
"Generate the Java source code associated with the specified ADL, membrane or component descriptors"
);
logger
.
info
(
""
);
...
...
@@ -285,6 +286,7 @@ public class JuliacCmdLine {
logger
.
info
(
" --srcs <dirs> : source files (default: src/main/java)"
);
logger
.
info
(
" --target <version> : the Java bytecode compatibility level (default: "
+
JDKLevel
.
getDefaultTargetLevel
(
jconf
.
getLogger
())+
")"
);
logger
.
info
(
" --sourceEncoding <encoding> : the Java source encoding"
);
logger
.
info
(
" --juliaCfgFiles <files> : comma-separated list of Julia configuration files"
);
logger
.
info
(
""
);
logger
.
info
(
" --compilationWarnings : report compilation warnings"
);
logger
.
info
(
" --compileInput : compile input code"
);
...
...
@@ -302,7 +304,7 @@ public class JuliacCmdLine {
logger
.
info
(
" <dirs> is a colon-separated list of directories or jar files"
);
logger
.
info
(
" <modules> is a colon-separated list of either"
);
logger
.
info
(
" - either one of the predefined modules: JDT, J
DK6
, SPOON, FRACTAL_ADL, MIND_ADL, OO, COMP, MERGE_ALL, ULTRA_COMP"
);
logger
.
info
(
" - or the fully-qualified name of a class that implements JuliacModuleItf
"
);
logger
.
info
(
" - either one of the predefined modules: JDT, J
CAPI
, SPOON, FRACTAL_ADL, MIND_ADL, OO, COMP, MERGE_ALL, ULTRA_COMP"
);
logger
.
info
(
" - or the fully-qualified name of a class that implements
"
+
JuliacModuleItf
.
class
.
getName
()
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment