diff options
author | gingold | 2006-06-22 19:30:52 +0000 |
---|---|---|
committer | gingold | 2006-06-22 19:30:52 +0000 |
commit | 06c89bf159a88b4339295b6007ff40bee14dd618 (patch) | |
tree | 891ef7c7dbf6251d7e2e77fd479ac3664dda40ca /translate/ghdldrv/ghdlmain.adb | |
parent | 8c212ade722f0f46ab7e8d9fddfe5769ee6e2bed (diff) | |
download | ghdl-06c89bf159a88b4339295b6007ff40bee14dd618.tar.gz ghdl-06c89bf159a88b4339295b6007ff40bee14dd618.tar.bz2 ghdl-06c89bf159a88b4339295b6007ff40bee14dd618.zip |
bugs fix, 93c improved
Diffstat (limited to 'translate/ghdldrv/ghdlmain.adb')
-rw-r--r-- | translate/ghdldrv/ghdlmain.adb | 11 |
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; |