vkd3d-compiler: Print a slightly more elaborate usage message.

Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Henri Verbeet 2020-07-02 18:13:12 +04:30 committed by Alexandre Julliard
parent 24eaeb2cdf
commit e3e76867ca
1 changed files with 6 additions and 5 deletions

View File

@ -98,12 +98,13 @@ compiler_options[] =
static void print_usage(const char *program_name)
{
unsigned int i;
static const char usage[] =
"[options...] file\n"
"Options:\n"
" -o <file> Write the output to <file>.\n"
" --strip-debug Strip debug information from the output.\n";
fprintf(stderr, "usage: %s", program_name);
for (i = 0; i < ARRAY_SIZE(compiler_options); ++i)
fprintf(stderr, " [%s]", compiler_options[i].name);
fprintf(stderr, " [-o <out_spirv_filename>] <dxbc_filename>\n");
fprintf(stderr, "Usage: %s %s", program_name, usage);
}
struct options