1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Add a help string for the -c option

llvm-svn: 50764
This commit is contained in:
Mikhail Glushenkov 2008-05-06 18:17:42 +00:00
parent 7710d5fb19
commit ca50cc143c

View File

@ -64,7 +64,8 @@ def llvm_gcc_assembler : Tool<
(out_language "object-code"),
(output_suffix "o"),
(cmd_line "llvm-gcc -c -x assembler $INFILE -o $OUTFILE"),
(switch_option "c", (stop_compilation)),
(switch_option "c", (stop_compilation),
(help "Compile and assemble, but do not link")),
(prefix_list_option "Wa", (unpack_values), (help "pass options to assembler"))
]>;