summaryrefslogtreecommitdiff
path: root/translate/ghdldrv/ghdlmain.adb
diff options
context:
space:
mode:
Diffstat (limited to 'translate/ghdldrv/ghdlmain.adb')
-rw-r--r--translate/ghdldrv/ghdlmain.adb11
1 files changed, 6 insertions, 5 deletions
diff --git a/translate/ghdldrv/ghdlmain.adb b/translate/ghdldrv/ghdlmain.adb
index a2eab98..8875279 100644
--- a/translate/ghdldrv/ghdlmain.adb
+++ b/translate/ghdldrv/ghdlmain.adb
@@ -132,9 +132,10 @@ package body Ghdlmain is
C := C.Next;
end loop;
New_Line;
- Put_Line
- ("To display the options of a GHDL program, run your program");
- Put_Line (" with the --help option.");
+ Put_Line ("To display the options of a GHDL program,");
+ Put_Line (" run your programm with the --help option.");
+ Put_Line ("Also see --options-help for analyzer options.");
+ New_Line;
Put_Line ("Please, refer to the GHDL manual for more information.");
Put_Line ("Report bugs on http://gna.org/projects/ghdl");
elsif Args'Length = 1 then
@@ -171,7 +172,7 @@ package body Ghdlmain is
is
pragma Unreferenced (Cmd);
begin
- return "--options-help Disp help for compiler options";
+ return "--options-help Disp help for analyzer options";
end Get_Short_Help;
procedure Perform_Action (Cmd : in out Command_Option_Help;
@@ -352,8 +353,8 @@ package body Ghdlmain is
procedure Register_Commands is
begin
Register_Command (new Command_Help);
- Register_Command (new Command_Option_Help);
Register_Command (new Command_Version);
+ Register_Command (new Command_Option_Help);
end Register_Commands;
end Ghdlmain;