From e408a7626b03a2b64ee6c31dc74aca213b5cea4f Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Fri, 24 Oct 2014 16:43:16 -0400 Subject: [PATCH] Added an option for enabling verbose status messages --- source/sclpl/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/source/sclpl/main.c b/source/sclpl/main.c index 930d793..17b3606 100644 --- a/source/sclpl/main.c +++ b/source/sclpl/main.c @@ -23,9 +23,8 @@ opts_cfg_t Options_Config[] = { {"staticlib", false, "mode", "Compile the application as a static library"}, {"sharedlib", false, "mode", "Compile the application as a shared library"}, {"program", false, "mode", "Compile the application as an executable"}, - {"entry", true, "entry", "Specify the module that contains the entry point for the executable"}, - {"e", true, "entry", "Specify the module that contains the entry point for the executable"}, - {"R", true, "include", "Add a path to the list of require paths"}, + {"verbose", false, "verbose", "Enable verbose status messages"}, + {"v", false, "verbose", "Enable verbose status messages"}, {NULL, false, NULL, NULL } }; -- 2.55.0