summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-02 23:59:12 +0000
committeralex <alex@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-02 23:59:12 +0000
commitb91e0ddf57934fc2a493f3afd0258f548a98c5ce (patch)
tree66be9a9bf614a6a14aff7f7840071b0a9fb10c89
parenta6093e17447be4d9a53529657f4f191a5c5bd93b (diff)
downloadATCD-b91e0ddf57934fc2a493f3afd0258f548a98c5ce.tar.gz
Updated the print statements to include the recent command line
options.
-rw-r--r--TAO/TAO_IDL/driver/drv_args.cpp24
1 files changed, 18 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/driver/drv_args.cpp b/TAO/TAO_IDL/driver/drv_args.cpp
index ca8da0c26d4..dffa838a856 100644
--- a/TAO/TAO_IDL/driver/drv_args.cpp
+++ b/TAO/TAO_IDL/driver/drv_args.cpp
@@ -110,12 +110,24 @@ DRV_usage()
cerr << idl_global->prog_name()
<< GTDEVEL(": usage: ")
<< idl_global->prog_name()
- << GTDEVEL(" [flag | file]*\n");
- cerr << GTDEVEL("Legal flags:\n");
- cerr << GTDEVEL(" -A...\t\t\tlocal implementation-specific escape\n");
- cerr << GTDEVEL(" -Dname[=value]\t\tdefines name for preprocessor\n");
- cerr << GTDEVEL(" -E\t\t\truns preprocessor only, prints on stdout\n");
- cerr << GTDEVEL(" -Idir\t\t\tincludes dir in search path for preprocessor\n");
+ << GTDEVEL (" [flag | file]*\n");
+ cerr << GTDEVEL ("Legal flags:\n");
+ cerr << GTDEVEL (" -A...\t\t\tlocal implementation-specific escape\n");
+ cerr << GTDEVEL (" -cs\t\t\tClient stub's file name ending. Default is C.cpp\n");
+ cerr << GTDEVEL (" -ci\t\t\tClient inline file name ending. Default is C.i\n");
+ cerr << GTDEVEL (" -Dname[=value]\t\tdefines name for preprocessor\n");
+ cerr << GTDEVEL (" -E\t\t\truns preprocessor only, prints on stdout\n");
+ cerr << GTDEVEL (" -Idir\t\t\tincludes dir in search path for preprocessor\n");
+ cerr << GTDEVEL (" -g <perfect_hasher>\tPath for the GPERF program. Default is $ACE_ROOT/bin/gperf\n");
+ cerr << GTDEVEL (" -hc\t\t\tClient's header file name ending. Default is C.h\n");
+ cerr << GTDEVEL (" -hs\t\t\tServer's header file name ending. Default is S.h\n");
+ cerr << GTDEVEL (" -hT\t\t\tServer's template hdr file name ending. Default is S_T.h\n");
+ cerr << GTDEVEL (" -H dynamic\t\tTo force dynamic-hashed operation lookup strategy. Default is perfect hashing\n");
+ cerr << GTDEVEL (" -o <output_dir>\tOutput directory for the generated files. Default is current directory\n");
+ cerr << GTDEVEL (" -ss\t\t\tServer's skeleton file name ending. Default is S.cpp\n");
+ cerr << GTDEVEL (" -sT\t\t\tServer's template skeleton file name ending. Default is S_T.cpp\n");
+ cerr << GTDEVEL (" -si\t\t\tServer's inline file name ending. Default is S.i\n");
+ cerr << GTDEVEL (" -st\t\t\tServer's template inline file name ending. Default S_T.i\n");
cerr << GTDEVEL(" -Uname\t\t\tundefines name for preprocessor\n");
cerr << GTDEVEL(" -V\t\t\tprints version info then exits\n");
cerr << GTDEVEL(" -W[p|b],arg1,argn\tpasses args to preprocessor or BE\n");