diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-04-20 20:37:17 +0400 |
---|---|---|
committer | Cyrill Gorcunov <gorcunov@gmail.com> | 2013-04-20 20:37:17 +0400 |
commit | deb082d63384de5810e7dfe2b7e63e67c3e2cce1 (patch) | |
tree | 265c0d1960716c567fde00860485e5277d8b56cd /nasm.c | |
parent | 895139cbd54463da0310c6ddb9e708925bfb374c (diff) | |
download | nasm-deb082d63384de5810e7dfe2b7e63e67c3e2cce1.tar.gz nasm-deb082d63384de5810e7dfe2b7e63e67c3e2cce1.tar.bz2 nasm-deb082d63384de5810e7dfe2b7e63e67c3e2cce1.zip |
BR3392248: Update nasm -h output
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -784,6 +784,9 @@ static bool process_arg(char *p, char *q) " -Z<file> redirect error messages to file\n" " -s redirect error messages to stdout\n\n" " -F format select a debugging format\n\n" + " -o outfile write output to an outfile\n\n" + " -f format select an output format\n\n" + " -l listfile write listing to a listfile\n\n" " -I<path> adds a pathname to the include file path\n"); printf (" -O<digit> optimize branch offsets\n" @@ -796,6 +799,7 @@ static bool process_arg(char *p, char *q) " -X<format> specifies error reporting format (gnu or vc)\n" " -w+foo enables warning foo (equiv. -Wfoo)\n" " -w-foo disable warning foo (equiv. -Wno-foo)\n\n" + " -h show invocation summary and exit\n\n" "--prefix,--postfix\n" " this options prepend or append the given argument to all\n" " extern and global variables\n\n" |