From 5e026dd62af204d827fcda537b6c70629c3c266b Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Sat, 28 Jul 2012 13:20:06 +0200 Subject: [PATCH] Print out all the information parsed from the commandline --- main.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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 */ -- 2.39.2