diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-11 18:07:40 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-11 18:07:40 -0700 |
commit | ca5ec7a225de431a0eb507472085323aab12e511 (patch) | |
tree | 18b7a8c27f15331613847b2a5d219bbb06bfba02 /nasm.c | |
parent | 842da0ad0b06492ffdded8d40d8edf7a2551fdb7 (diff) | |
download | nasm-ca5ec7a225de431a0eb507472085323aab12e511.tar.gz nasm-ca5ec7a225de431a0eb507472085323aab12e511.tar.bz2 nasm-ca5ec7a225de431a0eb507472085323aab12e511.zip |
Make -F imply -g (BR 1991213)
When the user specifies -F, imply the -g option. Too many users seem
to make this mistake.
Diffstat (limited to 'nasm.c')
-rw-r--r-- | nasm.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -722,6 +722,7 @@ static bool process_arg(char *p, char *q) " output format `%s'", param, ofmt->shortname); } + using_debug_info = true; break; case 'X': /* specify error reporting format */ |