summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChang S. Bae <chang.seok.bae@intel.com>2018-06-20 17:05:12 -0700
committerH. Peter Anvin (Intel) <hpa@zytor.com>2018-06-25 14:14:44 -0700
commit1af6ef4e146b740fdc02a969c28d50e809286ee6 (patch)
tree3c29339943143ec73ef1a9705c068c211903e23f
parentff6faf6134aa3ced7373fd7c63b329fc5900f614 (diff)
downloadnasm-1af6ef4e146b740fdc02a969c28d50e809286ee6.tar.gz
nasm: fix some typo and description for the option help
Signed-off-by: Chang S. Bae <chang.seok.bae@intel.com> Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
-rw-r--r--asm/nasm.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/asm/nasm.c b/asm/nasm.c
index b851ac4c..f9bd3db0 100644
--- a/asm/nasm.c
+++ b/asm/nasm.c
@@ -1943,14 +1943,16 @@ static void help(const char xopt)
" -w-foo disable warning foo (equiv. -Wno-foo)\n"
" -w[+-]error[=foo]\n"
" promote [specific] warnings to errors\n"
- " -h show invocation summary and exit\n\n"
+ " -h show invocation summary and exit (also --help)\n\n"
" --pragma str pre-executes a specific %%pragma\n"
" --before str add line (usually a preprocessor statement) before the input\n"
" --prefix str prepend the given string to all the given string\n"
- " to all extern, common and global symbols\n"
- " --suffix str append the given string to all the given string\n"
- " to all extern, common and global symbols\n"
+ " to all extern, common and global symbols (also --gprefix)\n"
+ " --postfix str append the given string to all the given string\n"
+ " to all extern, common and global symbols (also --gpostfix)\n"
" --lprefix str prepend the given string to all other symbols\n"
+ " --lpostfix str append the given string to all other symbols\n"
+ " --keep-all output files will not be removed even if an error happens\n"
" --limit-X val set execution limit X\n");
for (i = 0; i <= LIMIT_MAX; i++) {