From: Wolfgang Bumiller Date: Sat, 28 Jul 2012 11:20:06 +0000 (+0200) Subject: Print out all the information parsed from the commandline X-Git-Tag: 0.1-rc1~366^2~12 X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=commitdiff_plain;h=5e026dd62af204d827fcda537b6c70629c3c266b Print out all the information parsed from the commandline --- diff --git a/main.c b/main.c index f48a7fb..b9a23df 100644 --- a/main.c +++ b/main.c @@ -248,12 +248,35 @@ static bool options_parse(int argc, char **argv) { } int main(int argc, char **argv) { + size_t itr; app_name = argv[0]; if (!options_parse(argc, argv)) { return usage(); } + for (itr = 0; itr < opt_flag_list_count; ++itr) { + printf("Flag %s = %i\n", opt_flag_list[itr].name, OPT_FLAG(itr)); + } + printf("output = %s\n", opt_output); + printf("optimization level = %i\n", (int)opt_O); + printf("standard = %i\n", opt_standard); + + if (items_elements) { + printf("Mode: manual\n"); + printf("There are %i items to compile:\n", items_elements); + for (itr = 0; itr < items_elements; ++itr) { + printf(" item: %s (%s)\n", + items_data[itr].filename, + ( (items_data[itr].type == TYPE_QC ? "qc" : + (items_data[itr].type == TYPE_ASM ? "asm" : + (items_data[itr].type == TYPE_SRC ? "progs.src" : + ("unknown")))))); + } + } else { + printf("Mode: progs.src\n"); + } + util_debug("COM", "starting ...\n"); /* stuff */